Files
test-auth/app/templates/registration/password_reset_form.html
2011-03-15 12:02:34 +00:00

14 lines
389 B
HTML

{% extends "registration/registration_base.html" %}
{% block title %}Reset password{% endblock %}
{% block content %}
<p>Forgot your password? Enter your email in the form below and we'll send you
instructions for creating a new one.</p>
<form method='post' action=''>
<table>
{{ form }}
</table>
<input type='submit' value="Reset password" />
{% csrf_token %}
</form>
{% endblock %}