Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / registration / password_change_form.html @ 13858d75

History | View | Annotate | Download (555 Bytes)

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

    
3
{% block body %}
4
<form action="{% url django.contrib.auth.views.password_change %}" method="post"
5
    class="withlabels">{% csrf_token %}
6

    
7
    {% include "form_render.html" %}
8

    
9
    <div class="form-row submit">
10
        <input type="hidden" name="next" value="{{ next }}">
11
        <input type="hidden" name="auth" value="{{ user.auth_token }}">
12
    <input type="hidden" name="username" value="{{ username }}">
13
        <input type="submit" class="submit altcol" value="UPDATE" />
14
    </div>
15
  
16
</form>
17
{% endblock body %}