summaryrefslogtreecommitdiff
path: root/yaksh/templates/register/password_reset_confirm.html
blob: 55664993a189d7fc1366aac672285fb430de99b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% block title %}Reset Password{% endblock %}
{% block pagetitle %} Online Test {% endblock %}
{% block formtitle %} Reset password {% endblock %}

{% block content  %}
    {% if validlink %}
        <p>Please enter your new password twice so we can verify you typed it in correctly</p>.
        <form method="post">
            {% csrf_token %}
            {{ form.as_p }}
            <button class= "btn" type="submit">Submit</button>
        </form>
    {% else %}
        <p>This reset link is no longer valid!</p>
    {% endif %}
{% endblock %}