summaryrefslogtreecommitdiff
path: root/fossee_manim/templates/registration/password_reset_form.html
blob: 71507b20a7cf407d9e37a32ffabcf934df0d5b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "registration/base.html" %}

{% block title %}
Forgot Password
{% endblock %}

{% block content %}
<br>
<br>
<div class="container">
    <h3>Email will be send to the registered email address</h3>
    <form action="" method="post">
        {% csrf_token %}
        <table class="table table-bordered">
            {{ form }}
        </table>
        <button class="btn btn-success btn-sm" type="submit">Request</button>
        <a class="btn" href="{{URL_ROOT}}/login/">Cancel</a>
    </form>
</div>
{% endblock content %}