{% extends "base.html" %}
{#
This file is part of dj-user. dj-user is copyright © 2012-2013, RokuSigma
Inc. and contributors. See AUTHORS and LICENSE for more details.
This file was based on previous work distributed under the terms of the
copyright notice and disclaimer that follows. Modifications made to this
file since then are the property of Monetize.io Inc. and released under
the terms of the GNU Lesser General Public License, version 3 or later
as declared in this project's LICENSE file.
Copyright (c) 2010 Charlie DeTar
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
#}
{#
Used to show the form users will fill out to change their password. By
default, the template is provided with the following context:
form
The password change form. This will be an instance of some subclass of
“django.forms.Form”; consult Django's forms documentation
for information on
how to display this in a template.
#}
{% load crispy_forms_tags %}
{% block title %}Change password — {{ block.super }}{% endblock %}
{% block content %}
{% crispy form %}
{% endblock %}