2018-01-02 17:06:12 +01:00
|
|
|
{% extends "allauth_ens/base.html" %}
|
2017-09-16 02:32:42 +02:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
{% block header-title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block messages-extra %}
|
|
|
|
|
2018-01-02 17:06:12 +01:00
|
|
|
{% include "allauth_ens/block-messages-form-errors.html" with form_errors=form.non_field_errors %}
|
2017-09-16 02:32:42 +02:00
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<form action="{% url "account_change_password" %}" method="post">
|
2018-01-02 17:06:12 +01:00
|
|
|
{% include "allauth_ens/block-form.html" with form=form submit_value=submit_value %}
|
2017-09-16 02:32:42 +02:00
|
|
|
<input type="submit" value="{% trans "Change Password" %}">
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{% endblock %}
|