django-allauth-ens/allauth_ens/templates/account/password_change.html

23 lines
618 B
HTML
Raw Normal View History

{% 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 %}
{% 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">
{% 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 %}