13 lines
380 B
HTML
13 lines
380 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% block title %}Reset password{% endblock %}
|
|
{% block doccontent %}
|
|
<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=''>{% csrf_token %}
|
|
{{ form }}
|
|
<input type='submit' value="Reset password" />
|
|
</form>
|
|
{% endblock %}
|