2011-09-04 04:21:51 +00:00
|
|
|
{% extends "registration/registration_base.html" %}
|
|
|
|
{% block title %}Confirm password reset{% endblock %}
|
2011-11-19 00:50:47 +00:00
|
|
|
{% block doccontent %}
|
2012-01-13 21:24:34 +00:00
|
|
|
Enter your new password below to reset your password.<br /><br />
|
|
|
|
|
2012-03-09 18:15:30 +00:00
|
|
|
<form method="post" action="#">{% csrf_token %}
|
2012-04-16 18:18:04 +00:00
|
|
|
{{ form.as_p }}
|
2012-01-13 21:24:34 +00:00
|
|
|
<input type="submit" value="Set password" />
|
2011-09-04 04:21:51 +00:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|