Templates XHTML compliance fixes
[bugdar.git] / templates / passwordreset.tpl
1 $doctype
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="$stylevar[lang]" xml:lang="$stylevar[lang]" dir="$stylevar[lang_dir]">
3 <head>
4 $headinclude
5 <link rel="stylesheet" type="text/css" href="templates/box.css" media="screen" />
6 <title>{$bugsys->options['trackertitle']} - {@"Reset Password"}</title>
7 </head>
8
9 <body>
10
11 $header
12
13 <form action="login.php" name="resetpw" method="post">
14 <input type="hidden" name="do" value="resetpw" />
15 <input type="hidden" name="activator" value="$activation[activatorid]" />
16
17 <if condition="$show['errors']">
18 <div class="error" style="text-align: $stylevar[left]">
19 {@"The following errors occurred"}:
20 {$message->errorBox}
21 </div>
22 </if>
23
24 <div align="center" style="margin-top: 10px">
25 <div class="box altwidth">
26 <div class="box-head">{@"Lost Password Recovery: Password Reset"}</div>
27
28 <div class="box-mid">
29 <div>{@"Enter a new password below and then confirm it."}</div>
30 <div><strong>{@"New Password"}:</strong> <input type="password" name="fix_password" size="30" /></div>
31 <div><strong>{@"Confirm Password"}:</strong> <input type="password" name="confirm_password" size="30" /></div>
32 </div>
33
34 <div class="box-foot box-center">
35 <input type="submit" name="submit" value=" {@"Submit"} " accesskey="s" />
36 <input type="reset" name="reset" value=" {@"Reset"} " accesskey="r" />
37 </div>
38 </div>
39 </div>
40
41 </form>
42
43 $footer