diff options
author | adityacp | 2020-01-03 11:17:04 +0530 |
---|---|---|
committer | adityacp | 2020-01-03 11:17:04 +0530 |
commit | 664fa46ba041ebdc5912a3bf125056bbc52b1f95 (patch) | |
tree | 67e9c64e62906e8ad63e0e6e9f1324ce69da0fe0 /yaksh/templates/registration | |
parent | 293e95bd0920d2f06058cf3ee4c0be3c2b3cf905 (diff) | |
download | online_test-664fa46ba041ebdc5912a3bf125056bbc52b1f95.tar.gz online_test-664fa46ba041ebdc5912a3bf125056bbc52b1f95.tar.bz2 online_test-664fa46ba041ebdc5912a3bf125056bbc52b1f95.zip |
Remove unncessary break html tags and add bootstrap custom file input
Diffstat (limited to 'yaksh/templates/registration')
5 files changed, 16 insertions, 5 deletions
diff --git a/yaksh/templates/registration/password_change_done.html b/yaksh/templates/registration/password_change_done.html index 9dd04b5..34045d4 100644 --- a/yaksh/templates/registration/password_change_done.html +++ b/yaksh/templates/registration/password_change_done.html @@ -1,5 +1,12 @@ {% extends "base.html" %} {% load static %} +{% block pagetitle %} +<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top"> + <a class="navbar-brand" href="{% url 'yaksh:index' %}"> + <img src="{% static 'yaksh/images/yaksh_banner.png' %}" alt="YAKSH"> + </a> +</nav> +{% endblock %} {% block title %} Change Password {% endblock %} {% block script %} diff --git a/yaksh/templates/registration/password_change_form.html b/yaksh/templates/registration/password_change_form.html index b4880c6..f286741 100644 --- a/yaksh/templates/registration/password_change_form.html +++ b/yaksh/templates/registration/password_change_form.html @@ -1,11 +1,18 @@ {% extends "base.html" %} +{% load static %} <!DOCTYPE html> -{% block pagetitle %} Change Password {% endblock %} +{% block pagetitle %} +<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top"> + <a class="navbar-brand" href="{% url 'yaksh:index' %}"> + <img src="{% static 'yaksh/images/yaksh_banner.png' %}" alt="YAKSH"> + </a> +</nav> +Change Password +{% endblock %} {% block title %} Change Password {% endblock %} {% block content %} -<br><br> <form action="" method="post" > {% csrf_token %} <center> diff --git a/yaksh/templates/registration/password_reset_complete.html b/yaksh/templates/registration/password_reset_complete.html index 20dc697..ddf94a6 100644 --- a/yaksh/templates/registration/password_reset_complete.html +++ b/yaksh/templates/registration/password_reset_complete.html @@ -12,7 +12,6 @@ {% endblock %} {% block content %} -<br><br> <center> <div class="container"> <p>Your password has been reset. </p> diff --git a/yaksh/templates/registration/password_reset_done.html b/yaksh/templates/registration/password_reset_done.html index 036d691..94138dd 100644 --- a/yaksh/templates/registration/password_reset_done.html +++ b/yaksh/templates/registration/password_reset_done.html @@ -11,7 +11,6 @@ {% endblock %} {% block content %} -<br><br> <center> <h2>Password reset successful</h2> <div class="alert alert-success col-md-8"> diff --git a/yaksh/templates/registration/password_reset_form.html b/yaksh/templates/registration/password_reset_form.html index eeca8f2..acee288 100644 --- a/yaksh/templates/registration/password_reset_form.html +++ b/yaksh/templates/registration/password_reset_form.html @@ -12,7 +12,6 @@ {% endblock %} {% block content %} -<br><br> <center> <h4>Enter your registered email address to reset your password</h4> <div class="container"> |