annotate gpp/templates/accounts/password_reset_confirm.html @ 505:a5d11471d031

Refactor the logic in the rate limiter decorator. Check to see if the request was ajax, as the ajax view always returns 200. Have to decode the JSON response to see if an error occurred or not.
author Brian Neal <bgneal@gmail.com>
date Sat, 03 Dec 2011 19:13:38 +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 %}