summaryrefslogtreecommitdiff
path: root/yaksh/templates/register/password_reset_form.html
blob: 0dbaf0963e6bd3c4fdaa0ef943ed007bff4936b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base.html" %}
{% block title %} Forgot Password {% endblock %}
{% block pagetitle %} Online Test {% endblock %}
{% block formtitle %} 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 %}