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

13 lines
344 B
HTML

{% extends "registration/registration_base.html" %}
{% block title %}Confirm password reset{% endblock %}
{% block content %}
<p>Enter your new password below to reset your password:</p>
<form method="post" action="">
<table>
{{ form.as_table }}
</table>
<input type='submit' value="Set password" />
{% csrf_token %}
</form>
{% endblock %}