euscan-ng/euscanwww/djeuscan/templates/registration/password_reset_form.html
volpino d34a0c4992 euscanwww: included django-registration and tweaked templates
Signed-off-by: volpino <fox91@anche.no>
2012-06-09 17:12:09 +02:00

19 lines
460 B
HTML

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