16 lines
430 B
HTML
16 lines
430 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<h1>Reset your password</h1>
|
|
<p>Enter your email address below and we'll send you instructions on how to reset your password.</p>
|
|
<form method="post" action="{% url 'password_reset' %}">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<p>
|
|
<button type="submit">Send me instructions</button>
|
|
</p>
|
|
</form>
|
|
</article>
|
|
{% endblock %}
|