Blame view

templates/registration/password_change_form.html 2.27 KB
janek37 authored
1
2
3
{% extends "base.html" %}
{% load i18n %}
{% load url from future %}
janek37 authored
4
5
{% block userlinks %}{% trans 'Change password' %} /
    <a href="{% url 'auth_logout' %}">{% trans 'Log out' %}</a>{% endblock %}
janek37 authored
6
7
8

{% block title %}{% trans 'Password change' %}{% endblock %}
janek37 authored
9
10
11
{% block content %}
    <div id="content-main">
janek37 authored
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
        <form action="" method="post">{% csrf_token %}
            <div>
                {% if form.errors %}
                    <p class="errornote">
                        {% blocktrans count form.errors.items|length as counter %}
                            Please correct the error below.{% plural %}Please
                            correct the errors below.{% endblocktrans %}
                    </p>
                {% endif %}

                <h1>{% trans 'Password change' %}</h1>

                <p>{% trans "Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly." %}</p>

                <fieldset class="module aligned wide">

                    <div class="form-row">
                        {{ form.old_password.errors }}
                        <label for="id_old_password"
                               class="required">{% trans 'Old password' %}:</label>{{ form.old_password }}
                    </div>

                    <div class="form-row">
                        {{ form.new_password1.errors }}
                        <label for="id_new_password1"
                               class="required">{% trans 'New password' %}:</label>{{ form.new_password1 }}
                    </div>

                    <div class="form-row">
                        {{ form.new_password2.errors }}
                        <label for="id_new_password2"
                               class="required">{% trans 'Password (again)' %}:</label>{{ form.new_password2 }}
                    </div>

                </fieldset>

                <div class="submit-row">
                    <input type="submit"
                           value="{% trans 'Change my password' %}"
                           class="default"/>
janek37 authored
52
53
                </div>
janek37 authored
54
                <script type="text/javascript">document.getElementById("id_old_password").focus();</script>
janek37 authored
55
            </div>
janek37 authored
56
57
        </form>
    </div>
janek37 authored
58
59

{% endblock %}