17 lines
468 B
HTML
Executable File
17 lines
468 B
HTML
Executable File
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<article class="panel">
|
|
<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>
|
|
<input type="submit" value="Send me instructions" class="action-button">
|
|
</p>
|
|
</form>
|
|
</article>
|
|
{% endblock %}
|