summaryrefslogtreecommitdiff
path: root/fossee_manim/templates/registration/password_reset_confirm.html
blob: f7fc9bb7e291715af7870d3399b92b3773e0411a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "registration/base.html" %}
{% block title %}Reset Password{% endblock %}

{% block content  %}
<br>
<div class="container">
    {% 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 btn-success" type="submit">Submit</button>
    </form>
    {% else %}
    <p>This reset link is no longer valid!</p>
    {% endif %}
</div>
{% endblock %}