Implémentation complète (mais minimale) de la réinitialisation de mot de passe.
[Plinn.git] / skins / generic / password_reset_template.pt
1 <html metal:use-macro="here/main_template/macros/master"
2 xmlns:tal="http://xml.zope.org/namespaces/tal"
3 xmlns:metal="http://xml.zope.org/namespaces/metal"
4 xmlns:i18n="http://xml.zope.org/namespaces/i18n">
5 <head>
6 <title>Password reset form</title>
7 <meta http-equiv="content-type" content="text/html;charset=utf-8" />
8
9 </head>
10 <body i18n:domain="plinn">
11 <div metal:fill-slot="main_no_tabs" tal:omit-tag="">
12 <form tal:attributes="action options/action">
13 <h2 i18n:translate="">Password resetting</h2>
14 <table class="TwoColumnForm">
15 <tr>
16 <td colspan="2">
17 <dl class="FieldHelp">
18 <dd i18n:translate="">
19 Please enter a new password and clic on "Validate" button.
20 </dd>
21 </dl>
22 </td>
23 </tr>
24 <tr>
25 <th i18n:translate="">Password</th>
26 <td>
27 <input type="password" name="password"/>
28 </td>
29 </tr>
30 <tr>
31 <th i18n:translate="">Confirm</th>
32 <td>
33 <input type="password" name="confirm"/>
34 </td>
35 </tr>
36 <tr>
37 <td><br/></td>
38 <td>
39 <input type="submit" name="validate" value="Validate" i18n:attributes="value"/>
40 </td>
41 </tr>
42 </table>
43 </form>
44 </div>
45 </body>
46 </html>