source: main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/changepassword.pt @ 12016

Last change on this file since 12016 was 11979, checked in by Henrik Bettermann, 10 years ago

Replace kofa by ikoba.

File size: 875 bytes
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      i18n:domain="waeup.ikoba" enctype="multipart/form-data">
3
4  <input type="hidden" name="customer_id" value=""
5         tal:attributes="value context/customer_id" />
6
7  <table class="form-table">
8    <tbody>
9      <tr>
10        <td class="fieldname" i18n:translate="">Password:</td>
11        <td>
12          <input name="change_password" class="form-control" type="password"  />
13        </td>
14      </tr>
15      <tr>
16        <td class="fieldname" i18n:translate="">Retype Password:</td>
17        <td>
18          <input name="change_password_repeat" class="form-control" type="password" />
19        </td>
20      </tr>
21    </tbody>
22  </table>
23
24  <div tal:condition="view/availableActions">
25    <input tal:repeat="action view/actions"
26           tal:replace="structure action/render"
27           />
28  </div>
29</form>
Note: See TracBrowser for help on using the repository browser.