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

25 lines
424 B
HTML

{% extends 'application.html' %}
{% block content %}
{% if validlink %}
<section>
<h1>Reset password</h1>
<p>Enter a <em>new</em> password below.</p>
<form method="post" action=".">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Reset your password" />
</form>
</section>
{% else %}
<section>
<p>Password reset failed</p>
</section>
{% endif %}
{% endblock %}