Mercurial > public > sg101
comparison gpp/templates/accounts/password_reset_confirm.html @ 79:4b90d00cc4eb
#29 Forgot to create a template for password reset confirmation.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 12 Jul 2009 18:13:53 +0000 |
parents | |
children | 6a5549c2efb5 |
comparison
equal
deleted
inserted
replaced
78:4edfea7f8620 | 79:4b90d00cc4eb |
---|---|
1 {% extends 'base.html' %} | |
2 {% block title %}Reset Password{% endblock %} | |
3 {% block content %} | |
4 <h2>Reset Password</h2> | |
5 {% if validlink %} | |
6 <p> | |
7 Please use the following form to reset your password. | |
8 </p> | |
9 <form method="post" action="."> | |
10 <table> | |
11 {{ form.as_table }} | |
12 <tr><td> </td><td><input type="submit" value="Reset Password" /> | |
13 </td></tr> | |
14 </table> | |
15 </form> | |
16 {% else %} | |
17 <p> | |
18 We're sorry, the link you provided is invalid or has expired. If you are trying to | |
19 reset your password, please <a href="{% url accounts-password_reset %}">try again</a>. | |
20 If you have questions or problems, please <a href="{% url contact-form %}">contact us</a>. | |
21 </p> | |
22 {% endif %} | |
23 {% endblock %} |