xmpp.chapril.org-conversejs/html/registration/password_reset_confirm.html
2012-03-06 16:06:19 +01:00

24 lines
540 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% if validlink %}
<p>{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}</p>
<form action="" method="post">{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="{% trans 'Change my password' %}" class="button" />
</form>
{% else %}
<p>{% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}</p>
{% endif %}
{% endblock %}