Templates XHTML compliance fixes
[bugdar.git] / templates / lostpassword.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']} - {@"Lost Password"}</title>
7 </head>
8
9 <body>
10
11 $header
12
13 <form action="login.php" name="lostpw" method="post">
14 <input type="hidden" name="do" value="sendpw" />
15
16 <div align="center" style="margin-top: 10px">
17 <div class="box altwidth">
18 <div class="box-head">{@"Lost Password Recovery"}</div>
19
20 <div class="box-mid">
21 <if condition="$show['lostpwerror']"><div class="error">{@"The specified email could not be found or it is invalid."}</div></if>
22 <div>{@"Enter your email in the box below and you will receive a message with instructions on how to set a new password."}</div>
23 <div><strong>{@"Email"}:</strong> <input type="text" name="email" size="30" value="{$bugsys->in['email']}" /></div>
24 </div>
25
26 <div class="box-foot box-center">
27 <input type="submit" name="submit" value=" {@"Submit"} " accesskey="s" />
28 <input type="reset" name="reset" value=" {@"Reset"} " accesskey="r" />
29 </div>
30 </div>
31 </div>
32
33 </form>
34
35 $footer