9 lines
343 B
HTML
Executable File
9 lines
343 B
HTML
Executable File
<h1>Password reset</h1>
|
|
|
|
<p>Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one.</p>
|
|
|
|
<form action="" method="post">{% csrf_token %}
|
|
{{ form.email.errors }}
|
|
<p><label for="id_email">E-mail address:</label> {{ form.email }} <input type="submit" value="Reset my password" /></p>
|
|
</form>
|