annotate gpp/templates/accounts/password_reset_confirm.html @ 393:9af6bd45c1f8

Another try at #191 after getting some good advice in a django-users thread.
author Brian Neal <bgneal@gmail.com>
date Thu, 24 Mar 2011 00:15:34 +0000
parents daa2916f5b34
children
rev   line source
bgneal@79 1 {% extends 'base.html' %}
bgneal@310 2 {% load url from future %}
bgneal@79 3 {% block title %}Reset Password{% endblock %}
bgneal@79 4 {% block content %}
bgneal@79 5 <h2>Reset Password</h2>
bgneal@79 6 {% if validlink %}
bgneal@79 7 <p>
bgneal@79 8 Please use the following form to reset your password.
bgneal@79 9 </p>
bgneal@194 10 <form method="post" action=".">{% csrf_token %}
bgneal@79 11 <table>
bgneal@79 12 {{ form.as_table }}
bgneal@79 13 <tr><td>&nbsp;</td><td><input type="submit" value="Reset Password" />
bgneal@79 14 </td></tr>
bgneal@79 15 </table>
bgneal@79 16 </form>
bgneal@79 17 {% else %}
bgneal@79 18 <p>
bgneal@79 19 We're sorry, the link you provided is invalid or has expired. If you are trying to
bgneal@310 20 reset your password, please <a href="{% url 'accounts-password_reset' %}">try again</a>.
bgneal@310 21 If you have questions or problems, please <a href="{% url 'contact-form' %}">contact us</a>.
bgneal@79 22 </p>
bgneal@79 23 {% endif %}
bgneal@79 24 {% endblock %}