Files
test-auth/app/templates/registration/password_reset_form.html

17 lines
578 B
HTML

{% extends "registration/registration_base.html" %}
{% block title %}Forgotten password{% endblock %}
{% block content %}
<div class="page-header">
<h1>Forgotten Password</h1>
</div>
<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=''>
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.email %}
{% csrf_token %}
<input type='submit' value="Reset password" class="btn primary"/>
</fieldset>
</form>
{% endblock %}