22 lines
303 B
HTML
22 lines
303 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
{% if validlink %}
|
|
|
|
<form method="post" action=".">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" value="{% trans 'Submit' %}" />
|
|
</form>
|
|
|
|
{% else %}
|
|
|
|
<p>{% trans "Password reset failed" %}</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|