mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
16 lines
535 B
HTML
16 lines
535 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/formfield.html" with field=form.email %}
|
|
{% csrf_token %}
|
|
<input type='submit' value="Reset password" class="btn primary"/>
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|