summaryrefslogtreecommitdiff
path: root/sbhs/templates/account/registration/password_reset_confirm.html
blob: 020529a72cd2d0b6141c4d706a8be83521799578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% block title %}Reset your password{% endblock %}

{% block content %}
    <div class = "container"> 
        <h1>Reset your password</h1>
        {% if validlink %}
            <p>Please enter your new password twice:</p>
            <form action="." method="post">
                {{ form.as_p }}
                {% csrf_token %}
                <p><input type="submit" class = "btn btn-inverse" value="Change my password" /></p>
            </form>
        {% else %}
            <p>The password reset link was invalid, possibly because it has already been used. Please request a new password reset.</p>
        {% endif %}    
    </div>
    
{% endblock %}