22 lines
606 B
HTML
22 lines
606 B
HTML
{% extends "account/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Change Password" %}{% endblock %}
|
|
{% block header-title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
{% block messages-extra %}
|
|
|
|
{% include "account/block-messages-form-errors.html" with form_errors=form.non_field_errors %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<section>
|
|
<form action="{% url "account_change_password" %}" method="post">
|
|
{% include "account/block-form.html" with form=form submit_value=submit_value %}
|
|
<input type="submit" value="{% trans "Change Password" %}">
|
|
</form>
|
|
</section>
|
|
|
|
{% endblock %}
|