Fix the password reset email system
[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><%- bugdar::$options['trackertitle'] %> - <%-T("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 ($show['errors']): %>
18 <div class="error" style="text-align: <%- $stylevar['left'] %>">
19 <%-T("The following errors occurred")%>:
20 <%- $message->errorBox %>
21 </div>
22 <% endif %>
23
24 <div align="center" style="margin-top: 10px">
25 <div class="box altwidth">
26 <div class="box-head"><%-T("Lost Password Recovery: Password Reset")%></div>
27
28 <div class="box-mid">
29 <div><%-T("Enter a new password below and then confirm it.")%></div>
30 <div><strong><%-T("New Password")%>:</strong> <input type="password" name="fix_password" size="30" /></div>
31 <div><strong><%-T("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=" <%-T("Submit")%> " accesskey="s" />
36 <input type="reset" name="reset" value=" <%-T("Reset")%> " accesskey="r" />
37 </div>
38 </div>
39 </div>
40
41 </form>
42
43 <%- $footer %>