Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / registration / password_change_form.html @ 890b0eaf

History | View | Annotate | Download (508 Bytes)

1 890b0eaf Sofia Papagiannaki
{% extends "account_base.html" %}
2 64cd4730 Antony Chazapis
3 64cd4730 Antony Chazapis
{% block body %}
4 890b0eaf Sofia Papagiannaki
<form action="{% url django.contrib.auth.views.password_change %}" method="post">{% csrf_token %}
5 64cd4730 Antony Chazapis
  <div class="clearfix">
6 890b0eaf Sofia Papagiannaki
    {{ form.as_p }}
7 64cd4730 Antony Chazapis
  </div>
8 64cd4730 Antony Chazapis
  
9 64cd4730 Antony Chazapis
  <div class="actions">
10 64cd4730 Antony Chazapis
    <input type="hidden" name="auth" value="{{ auth }}">
11 64cd4730 Antony Chazapis
    <input type="hidden" name="next" value="{{ next }}">
12 64cd4730 Antony Chazapis
    <input type="hidden" name="username" value="{{ username }}">
13 64cd4730 Antony Chazapis
    <button type="submit" class="btn primary">Reset</button>
14 64cd4730 Antony Chazapis
  </div>
15 64cd4730 Antony Chazapis
</form>
16 64cd4730 Antony Chazapis
{% endblock body %}