euscan-ng/euscanwww/djeuscan/templates/registration/password_reset_form.html

25 lines
549 B
HTML
Raw Normal View History

{% 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 %}