bgneal@79: {% extends 'base.html' %} bgneal@79: {% block title %}Reset Password{% endblock %} bgneal@79: {% block content %} bgneal@79: <h2>Reset Password</h2> bgneal@79: {% if validlink %} bgneal@79: <p> bgneal@79: Please use the following form to reset your password. bgneal@79: </p> bgneal@194: <form method="post" action=".">{% csrf_token %} bgneal@79: <table> bgneal@79: {{ form.as_table }} bgneal@79: <tr><td> </td><td><input type="submit" value="Reset Password" /> bgneal@79: </td></tr> bgneal@79: </table> bgneal@79: </form> bgneal@79: {% else %} bgneal@79: <p> bgneal@79: We're sorry, the link you provided is invalid or has expired. If you are trying to bgneal@79: reset your password, please <a href="{% url accounts-password_reset %}">try again</a>. bgneal@79: If you have questions or problems, please <a href="{% url contact-form %}">contact us</a>. bgneal@79: </p> bgneal@79: {% endif %} bgneal@79: {% endblock %}