annotate gpp/templates/accounts/password_reset_confirm.html @ 322:c3d3d7114749

Fix #148; Django now requires AJAX posts to present the CSRF token. Added code suggested by Django docs to shoutbox.js. Since shoutbox.js is on every page, it should cover all cases.
author Brian Neal <bgneal@gmail.com>
date Sat, 12 Feb 2011 21:37:17 +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 %}