itf/itf/templates/allauth/account/password_change.html
2012-07-14 05:11:57 +02:00

14 lines
420 B
HTML

{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Change Password" %}{% endblock %}
{% block content %}
<h1>{% trans "Change Password" %}</h1>
<form method="POST" action="" class="password_change">
{% csrf_token %}
{{ password_change_form.as_p }}
<button type="submit" name="action">{% trans "Change Password" %}</button>
</form>
{% endblock %}