2013-08-16 17:17:18 +04:00
|
|
|
{% 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">
|
2013-08-16 17:17:18 +04:00
|
|
|
<h2>{% trans "Change Password" %}</h2>
|
2013-08-16 16:07:28 +04:00
|
|
|
|
|
|
|
<form method="POST" action="" class="password_change">
|
|
|
|
{% csrf_token %}
|
2013-08-16 17:17:18 +04:00
|
|
|
{{ 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 %}
|