r498: Changing <div>s drawn with t* classes to use the new box.css model
[bugdar.git] / templates / register.tpl
1 $doctype
2 <html lang="$stylevar[lang]" xml:lang="$stylevar[lang]">
3 <head>
4 $headinclude
5 <link rel="stylesheet" href="templates/box.css" media="screen" />
6 <title>{$bugsys->options['trackertitle']} - {@"Register"}</title>
7 </head>
8
9 $header
10
11 <form action="register.php" name="register" method="post">
12 <input type="hidden" name="do" value="insert" />
13
14 <div align="center" style="margin-top: 10px">
15 <div class="box" style="width: $stylevar[alternate_width]">
16 <div class="box-head">{@"Register"}</div>
17
18 <div class="box-mid">
19 <div><strong>{@"Email"}:</strong> <input type="text" name="email" size="30" /></div>
20 <div><strong>{@"Confirm Email"}:</strong> <input type="text" name="confirmemail" size="30" /></div>
21 <div><strong>{@"Display Name"}:</strong> <input type="text" name="displayname" size="30" /></div>
22 <div><strong>{@"Password"}:</strong> <input type="password" name="password" size="30" /></div>
23 <div><strong>{@"Confirm Password"}:</strong> <input type="password" name="confirmpassword" size="30" /></div>
24 <div><strong>{@"Show My Email Publicly"}:</strong> <input type="checkbox" value="1" name="showemail" /> {@"Yes"}</div>
25 <div><strong>{@"Language"}:</strong> <select name="languageid">$opts</select></div>
26 </div>
27
28 <div class="box-foot + box-center">
29 <input type="submit" name="submit" value=" {@"Register"} " accesskey="s" />
30 <input type="reset" name="reset" value=" {@"Reset"} " accesskey="r" />
31 </div>
32 </div>
33 </div>
34
35 </form>
36
37 $footer