cookiecutter-django/{{cookiecutter.repo_name}}/{{cookiecutter.project_name}}/templates/account/password_change.html

23 lines
595 B
HTML
Raw Normal View History

{% raw %}{% extends "account/base.html" %}
2013-08-16 16:07:28 +04:00
{% load i18n %}
2013-09-01 21:38:57 +04:00
{% load crispy_forms_tags %}
2013-08-16 16:07:28 +04:00
{% block head_title %}{% trans "Change Password" %}{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-md-5">
<h2>{% trans "Change Password" %}</h2>
2013-08-16 16:07:28 +04:00
<form method="POST" action="" class="password_change">
{% csrf_token %}
{{ form|crispy }}
<button class="btn" type="submit" name="action">{% trans "Change Password" %}</button>
2013-08-16 16:07:28 +04:00
</form>
</div>
</div>
</div>
{% endblock %}
2013-09-01 21:38:57 +04:00
{% endraw %}