comparison gpp/templates/accounts/password_reset.html @ 78:4edfea7f8620

#29 - Implementing the forgotten password reset process.
author Brian Neal <bgneal@gmail.com>
date Sun, 12 Jul 2009 18:02:44 +0000
parents
children 6a5549c2efb5
comparison
equal deleted inserted replaced
77:d5eed0a91a05 78:4edfea7f8620
1 {% extends 'base.html' %}
2 {% block title %}Reset Password{% endblock %}
3 {% block content %}
4 <h2>Reset Password</h2>
5 <p>Forgot your password? No problem. Just enter your email address and we will
6 email you instructions on how to reset it.
7 </p>
8 <form method="post" action=".">
9 <table>
10 {{ form.as_table }}
11 <tr><td>&nbsp;</td><td><input type="submit" value="Reset Password" />
12 </td></tr>
13 </table>
14 </form>
15 {% endblock %}