2011-09-04 04:21:51 +00:00
|
|
|
{% extends "registration/registration_base.html" %}
|
|
|
|
{% block title %}Reset password{% endblock %}
|
2011-11-19 00:50:47 +00:00
|
|
|
{% block doccontent %}
|
2011-09-04 04:21:51 +00:00
|
|
|
<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=''>{% csrf_token %}
|
|
|
|
{{ form }}
|
2012-01-13 21:24:34 +00:00
|
|
|
<input type='submit' value="Reset password" />
|
2011-09-04 04:21:51 +00:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|