Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / registration / password_change_form.html @ bf0c6de5

History | View | Annotate | Download (560 Bytes)

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

    
3
{% block body %}
4
<form action="{% url astakos.im.target.local.password_change %}" method="post"
5
    class="withlabels">{% csrf_token %}
6

    
7
    {% include "im/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="CHANGE" />
14
    </div>
15
</form>
16
{% endblock body %}