summaryrefslogtreecommitdiff
path: root/yaksh/templates/registration/password_reset_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/templates/registration/password_reset_form.html')
-rw-r--r--yaksh/templates/registration/password_reset_form.html17
1 files changed, 14 insertions, 3 deletions
diff --git a/yaksh/templates/registration/password_reset_form.html b/yaksh/templates/registration/password_reset_form.html
index 0444584..de05df9 100644
--- a/yaksh/templates/registration/password_reset_form.html
+++ b/yaksh/templates/registration/password_reset_form.html
@@ -1,10 +1,21 @@
{% extends "base.html" %}
-{% block pagetitle %} Email will be send to the registered email address {% endblock %}
+{% block pagetitle %}
+<div class="yakshnav fixed-top" style=" padding-top: 0.5%;padding-bottom: 0.5%;">
+ <a class="navbar-brand" href="{{ URL_ROOT }}/exam/" >
+ <img src="{{ URL_ROOT }}/static/yaksh/images/yaksh_banner.png" alt="YAKSH">
+ </img>
+ </a>
+</div>
+{% endblock %}
+
{% block content %}
+<center>
+<h4>Email will be send to the registered email address</h4>
<form action="" method="post">
{% csrf_token %}
{{ form }}
- <button class="btn" type="submit">Request</button>
- <a class="btn" href="{{URL_ROOT}}/exam/login/">Cancel</a>
+ <button class="btn btn-success" type="submit">Request</button>
+ <a class="btn btn-danger" href="{{URL_ROOT}}/exam/login/">Cancel</a>
</form>
+</center>
{% endblock content %}