summaryrefslogtreecommitdiff
path: root/fossee_manim/templates/registration/password_reset_confirm.html
blob: 9f5b47a120999523ecf3524c945f287cd924e626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% block pagetitle %}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 %}