This repository has been archived on 2022-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
DEMOS2/allauthdemo/templates/allauth/account/password_change.html

18 lines
549 B
HTML
Executable File

{% extends "account/base.html" %}
{% load i18n %}
{% load bootstrap3 %}
{% block head_title %}{% trans "Change Password" %}{% endblock %}
{% block account_nav_change_password %}active{% endblock %}
{% block account_content %}
<form method="POST" action="" class="password_change">
{% csrf_token %}
{% bootstrap_form password_change_form %}
<div class="form-actions">
<button class="btn btn-primary" type="submit" name="action">{% trans "Change Password" %}</button>
</div>
</form>
{% endblock %}