summaryrefslogtreecommitdiff
path: root/yaksh/templates/registration/password_reset_form.html
blob: 0444584856f67638c6f947b4faa445601bfadea3 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% block pagetitle %} Email will be send to the registered email address {% endblock %}
{% block content %}
<form action="" method="post">
    {% csrf_token %}
    {{ form }}
    <button class="btn" type="submit">Request</button>
    <a class="btn" href="{{URL_ROOT}}/exam/login/">Cancel</a>
</form>
{% endblock content %}