summaryrefslogtreecommitdiff
path: root/templates/password/edit.html
blob: 38f2254cfe85dfb51bf737f9ed5bb1b51ce000cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "layout.html" %}

{% block content %}
<div class="container">
    <div class="row">
        <div class="span11">
            <h2>Change Password</h2>
            <br>
            <form action="{% url 'password_update' token %}" method="POST">
                {% csrf_token %}
                <label for="email">Email</label>
                <input type="email" name="email" id="email" required>
                <br>
                <label for="password">Password</label>
                <input type="password" name="password" id="password" required>
                <br>
                <label for="confirm">Confirm password</label>
                <input type="password" name="confirm" id="confirm" required>
                <br>
                <input type="submit" class="btn btn-primary" value="Change password">
            </form>
        </div>
    </div>
</div>
{% endblock %}