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">
6 <title>Password reset form</title>
7 <meta http-equiv="content-type" content="text/html;charset=utf-8" />
10 <body i18n:domain="plinn">
11 <div metal:fill-slot="main_no_tabs"
12 tal:define="form options/form"
14 <form tal:attributes="action form/action">
15 <div tal:condition="not: options/passwordChanged" tal:omit-tag="">
16 <h2 i18n:translate="">Password resetting</h2>
17 <table class="TwoColumnForm">
20 <dl class="FieldHelp">
21 <dd i18n:translate="">
22 Please enter a new password and clic on "Validate" button.
28 <th i18n:translate="">Password</th>
30 <input type="password" name="password"/>
34 <th i18n:translate="">Confirm</th>
36 <input type="password" name="confirm"/>
42 <metal:macro metal:use-macro="context/form_widgets/macros/hidden_vars"/>
43 <metal:macro metal:use-macro="context/form_widgets/macros/buttons"/>
48 <div tal:condition="options/passwordChanged" tal:omit-tag="">
49 <h2 i18n:translate="">Password changed</h2>
51 Your password has been successfully reset. You can log in
52 immediately by clicking the "Login" button.
54 <metal:macro metal:use-macro="context/form_widgets/macros/hidden_vars"/>
55 <metal:macro metal:use-macro="context/form_widgets/macros/buttons"/>