1 <html metal:use-macro="here/main_template/macros/master">
3 <title>Password Form</title>
4 <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
7 <div class="config" metal:fill-slot="main_no_tabs" i18n:domain="plinn" tal:define="member python: here.portal_membership.getAuthenticatedMember()">
8 <h1 i18n:translate="">Change your Password</h1>
10 tal:replace="request/error"
11 tal:condition="request/error|nothing"><hr /></div>
13 <form action="change_password" method="post"
14 tal:attributes="action string:${here/absolute_url}/change_password"
16 <table class="TwoColumnForm" cellspacing="0">
18 <th i18n:translate="">Username</th>
19 <td><span tal:replace="member/getUserName">You</span>
23 <th i18n:translate="">New password</th>
24 <td><input type="password" name="password" />
28 <th i18n:translate="">Confirm new password</th>
29 <td><input type="password" name="confirm" />
35 <input type="submit" value="Change" i18n:attributes="value" />