]> git.0d.be Git - panikdb.git/blob - panikdb/templates/registration/password_change_form.html
add page to view/edit profile
[panikdb.git] / panikdb / templates / registration / password_change_form.html
1 {% extends "registration/base.html" %}
2 {% load i18n static %}
3
4 {% block appbar %}
5 <h2>{% trans 'Password change' %}</h2>
6 {% endblock %}
7
8 {% block content %}
9
10 <form action="" method="post">
11 {% csrf_token %}
12 {{form.as_p}}
13
14 <div class="buttons">
15   <button>{% trans 'Change my password' %}</button>
16   <a class="cancel" href="../..">Annuler</a>
17 </div>
18
19 <script type="text/javascript">document.getElementById("id_old_password").focus();</script>
20 </form>
21
22 {% endblock %}