25 lines
452 B
HTML
25 lines
452 B
HTML
{% extends 'application.html' %}
|
|
|
|
{% block content %}
|
|
|
|
{% if validlink %}
|
|
<section class="panel">
|
|
<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 class="panel">
|
|
<p>Password reset failed</p>
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|