You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
411 B

{% extends 'layout.html' %}
{% block title %}Password Reset{% endblock %}
{% block body %}
{% if validlink %}
<h1>Set a new password</h1>
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Change my password">
</form>
{% else %}
<p>The password reset link is invalid.</p>
{% endif %}
{% endblock %}