euscan-ng/euscanwww/djeuscan/templates/registration/password_reset_form.html
2012-08-08 10:47:58 +02:00

25 lines
549 B
HTML

{% extends "registration/_registration_base.html" %}
{% block title %}Reset password{% endblock %}
{% block content %}
<h2>
Reset password
</h2>
<p class="padded">
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 %}
<table class="table">
{{ form }}
<tr>
<td></td>
<td><input class="btn" type='submit' value="Reset password" /></td>
</tr>
</table>
</form>
{% endblock %}