nsupdate.info/nsupdate/accounts/templates/registration/password_reset_confirm.html

13 lines
425 B
HTML
Raw Normal View History

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 }}
<tr><td></ td><td><input type="submit" value="{% trans "Set password" %}"/></td></tr>
</table>
</form>
{% endblock %}