Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / registration / password_change_form.html @ 88d56ac5

History | View | Annotate | Download (509 Bytes)

1
{% extends "account_base.html" %}
2

    
3
{% block body %}
4
<form action="{% url django.contrib.auth.views.password_change %}" method="post">{% csrf_token %}
5
  <div class="clearfix">
6
    {{ form.as_p }}
7
  </div>
8
  
9
  <div class="actions">
10
    <input type="hidden" name="auth" value="{{ auth }}">
11
    <input type="hidden" name="next" value="{{ next }}">
12
    <input type="hidden" name="username" value="{{ username }}">
13
    <button type="submit" class="btn primary">Change</button>
14
  </div>
15
</form>
16
{% endblock body %}