aboutsummaryrefslogtreecommitdiffstats
path: root/root/register/index.tt
blob: c4b2ad61601e55c3685023a12ac3a13f58696135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42


<h2>[% l('Register') %]</h2>

<div id="input_form">
<form method="post" action="/register/check">
            <h3>[% l('Username') %]</h3>
			<label for="uid_">[% l('Username') %]</label><br />
			<input id="uid_" type="text" name="uid" value="[% c.request.params.uid %]" /><br />
                        [% l('Allowed characters: lower case letters and numbers') %]

            <p>
            <h3>[% l('Personal Information') %]</h3>
            <label for="gn_">[% l('First name') %]</label><br/>
			<input id="gn_" type="text" name="gn" value="[% c.request.params.gn %]" /><br />

			<label for="sn_">[% l('Surname') %]</label><br/>
			<input id="sn_" type="text" name="sn" value="[% c.request.params.sn %]" /><br />
            </p>
            <p>
            <h3>[% l('Email') %]</h3>
			<label for="mail1_">[% l('Email address') %]</label><br/>
			<input id="mail1_" type="text" name="mail1" value="[% c.request.params.mail1 %]" /><br />

			<label for="mail2_">[% l('Confirm Email address') %]</label><br/>
			<input id="mail2_" type="text" name="mail2" value="[% c.request.params.mail2 %]" /><br />
            </p>

            <p>
			<h3>[% l('Captcha') %]</h3>
                        [% l('Some characters are turned around.') %]
                        [% l('The following characters can be used:') %]
                        2 3 4 5 6 7 8 9 A B C D E F G H J K L M P R S T U V W X Y Z
                        <br />

            <img src="/register/captcha" /><br />
			<label for="test">[% l('Enter text') %]</label><br/>
            <input type="text" name="validate" /><br/>
            </p>
			<button type="submit" value="[% l('Register') %]">[% l('Register') %]</button>
</form>
</div>