summaryrefslogtreecommitdiff
path: root/yaksh/templates/registration/password_change_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/templates/registration/password_change_form.html')
-rw-r--r--yaksh/templates/registration/password_change_form.html16
1 files changed, 14 insertions, 2 deletions
diff --git a/yaksh/templates/registration/password_change_form.html b/yaksh/templates/registration/password_change_form.html
index b618410..18dfa2e 100644
--- a/yaksh/templates/registration/password_change_form.html
+++ b/yaksh/templates/registration/password_change_form.html
@@ -1,8 +1,18 @@
{% extends "base.html" %}
<!DOCTYPE html>
{% block pagetitle %} Change Password {% endblock %}
+{% block title %} Change Password {% endblock %}
+
+{% block nav %}
+<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top">
+ <a class="navbar-brand" href="{{ URL_ROOT }}/exam/">
+ <img src="{{ URL_ROOT }}/static/yaksh/images/yaksh_banner.png" alt="YAKSH">
+ </a>
+</nav>
+{% endblock %}
{% block content %}
+<br><br>
<form action="" method="post" >
{% csrf_token %}
<center>
@@ -10,7 +20,9 @@
{{ form }}
</table>
</center>
- <center><button class="btn" type="submit">Change Password</button>
- <button class="btn" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/exam/");'>Cancel</button></center>
+ <br>
+ <center><button class="btn btn-success btn-lg" type="submit">Change</button>
+ <button class="btn btn-primary btn-lg" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/exam/");'>Cancel
+ </button></center>
</form>
{% endblock content %}