Switch the 'modify' code of admin/field.php to use templates
[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><%- bugdar::$options['trackertitle'] %> - <%-T("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"><%-T("Lost Password Recovery")%></div>
19
20 <div class="box-mid">
21 <% if ($show['lostpwerror']): %><div class="error"><%-T("The specified email could not be found or it is invalid.")%></div><% endif %>
22 <div><%-T("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><%-T("Email")%>:</strong> <input type="text" name="email" size="30" value="<%- $input->in['email'] %>" /></div>
24 </div>
25
26 <div class="box-foot box-center">
27 <input type="submit" name="submit" value=" <%-T("Submit")%> " accesskey="s" />
28 <input type="reset" name="reset" value=" <%-T("Reset")%> " accesskey="r" />
29 </div>
30 </div>
31 </div>
32
33 </form>
34
35 <%- $footer %>