summaryrefslogtreecommitdiff
path: root/templates/password_reset.pt
blob: ac694efdd89d6db2ecdac03cdad0258fdc3359a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:use-macro="standard_template/macros/page">
  <metal:fill fill-slot="body">
    <p>To reset your account password please enter the username below.</p>

    <p tal:condition="data/retry | nothing"><strong>You must supply a
      username!</strong></p>

    <form tal:attributes="action app/url_path" method="POST">
      <input type="hidden" name=":action" value="forgotten_password" />
      <table class="form">
    <tr>
      <th>Username:</th>
      <td><input name="name" /></td>
    </tr>
    <tr>
      <td></td>
      <td><input type="submit" value="Reset password" /></td>
    </tr>
      </table>
    </form>

    <p>An email will be sent to you at the account registered address -
    please follow the instructions within it to complete the reset process.</p>

  </metal:fill>
</html>