blob: dcda588be22c6c842976eadd691bf06034e98aba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<h1>[% l('Forgot your password?') %]</h1>
<div id="input_form">
<form method="post" action="/forgot_password/check">
<table>
<tr>
<td><label for="mail_">[% l('Email address') %]</label></td>
<td><input id="mail_" type="text" name="mail" value="[% c.request.params.mail %]" /></td>
</tr><tr>
<td colspan="2" style="text-align:center;">
<input type="submit" value="[% l('Reset password') %]" />
</td>
</tr>
</table>
</form>
</div>
|