timetracker/templates/registration/password_reset_form.html
2021-02-04 21:27:04 -07:00

18 lines
424 B
HTML

{% extends 'application.html' %}
{% block content %}
<section class="panel">
<h1>Reset your password</h1>
<p>Enter your email address below and we'll send you instructions.</p>
<form method="post" action="{% url 'password_reset' %}">
{% csrf_token %}
{{ form.as_p }}
<p>
<input type="submit" value="Send me instructions">
</p>
</form>
</section>
{% endblock %}