2013-09-28 12:43:57 +02:00
|
|
|
{% extends "registration/registration_base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Confirm password reset" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% trans "Enter your new password below to reset your password:" %}
|
|
|
|
<form method="post" action="">{% csrf_token %}
|
|
|
|
<table>
|
|
|
|
{{ form.as_table }}
|
2013-09-29 15:38:52 +02:00
|
|
|
<tr><td></td><td><input type="submit" value="{% trans "Set password" %}"/></td></tr>
|
2013-09-28 12:43:57 +02:00
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|