timetracker/templates/registration/password_reset_form.html
2021-01-28 18:12:42 -07:00

18 lines
410 B
HTML

{% extends 'application.html' %}
{% block content %}
<section>
<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 %}