diff options
author | Prabhu Ramachandran | 2016-11-08 16:59:42 +0530 |
---|---|---|
committer | GitHub | 2016-11-08 16:59:42 +0530 |
commit | 7ae8584a4f4d095e005d6239102c0f26611ac006 (patch) | |
tree | 0fa4b44ec9974a2598d94ed7fb35b7f09342ae3f /yaksh/templates/register | |
parent | 710d620834a424cc8aa2a4db099437b160f86b92 (diff) | |
parent | 35c6ec27921137e31382ca1faa2c41d99550722a (diff) | |
download | online_test-7ae8584a4f4d095e005d6239102c0f26611ac006.tar.gz online_test-7ae8584a4f4d095e005d6239102c0f26611ac006.tar.bz2 online_test-7ae8584a4f4d095e005d6239102c0f26611ac006.zip |
Merge pull request #151 from prathamesh920/UI-modifications
UI modifications Level 1
Diffstat (limited to 'yaksh/templates/register')
6 files changed, 7 insertions, 16 deletions
diff --git a/yaksh/templates/register/password_change_done.html b/yaksh/templates/register/password_change_done.html index fef07d1..14df20c 100644 --- a/yaksh/templates/register/password_change_done.html +++ b/yaksh/templates/register/password_change_done.html @@ -1,7 +1,6 @@ {% extends "base.html" %} -{% block title %}Password change successful{% endblock %} -{% block pagetitle %}Online Test {% endblock %} +{% block pagetitle %}Password change successful{% endblock %} {% block script %} <script type="text/javascript"> window.setTimeout(function() @@ -13,4 +12,4 @@ {% block content %} <h3>Your password has been changed successfully.</h3> <h4>Redirecting ...</h4> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/yaksh/templates/register/password_change_form.html b/yaksh/templates/register/password_change_form.html index 48292f8..b618410 100644 --- a/yaksh/templates/register/password_change_form.html +++ b/yaksh/templates/register/password_change_form.html @@ -1,8 +1,6 @@ {% extends "base.html" %} <!DOCTYPE html> -{% block title %} Change Password {% endblock %} - -{% block pagetitle %} Online Test {% endblock %} +{% block pagetitle %} Change Password {% endblock %} {% block content %} <form action="" method="post" > diff --git a/yaksh/templates/register/password_reset_complete.html b/yaksh/templates/register/password_reset_complete.html index 0801d3b..0c1bae2 100644 --- a/yaksh/templates/register/password_reset_complete.html +++ b/yaksh/templates/register/password_reset_complete.html @@ -1,6 +1,5 @@ {% extends "base.html" %} -{% block title %}Password reset complete{% endblock %} -{% block pagetitle %} Online Test {% endblock %} +{% block pagetitle %}Password reset complete{% endblock %} {% block content %} <p>Your password has been reset. </p> <p><a href="{{ login_url }}">Log in</a></p> diff --git a/yaksh/templates/register/password_reset_confirm.html b/yaksh/templates/register/password_reset_confirm.html index 5566499..1b0a1b7 100644 --- a/yaksh/templates/register/password_reset_confirm.html +++ b/yaksh/templates/register/password_reset_confirm.html @@ -1,7 +1,5 @@ {% extends "base.html" %} -{% block title %}Reset Password{% endblock %} -{% block pagetitle %} Online Test {% endblock %} -{% block formtitle %} Reset password {% endblock %} +{% block pagetitle %}Reset Password{% endblock %} {% block content %} {% if validlink %} diff --git a/yaksh/templates/register/password_reset_done.html b/yaksh/templates/register/password_reset_done.html index ace3cc9..1ac7b60 100644 --- a/yaksh/templates/register/password_reset_done.html +++ b/yaksh/templates/register/password_reset_done.html @@ -1,4 +1,3 @@ {% extends "base.html" %} {% block title %}Password reset successful{% endblock %} -{% block pagetitle %} Online Test {% endblock %} -{% block formtitle %} Instruction for setting new password has been mailed to your registered email address {% endblock %} +{% block pagetitle %} Instruction for setting new password has been mailed to your registered email address {% endblock %} diff --git a/yaksh/templates/register/password_reset_form.html b/yaksh/templates/register/password_reset_form.html index 0dbaf09..0444584 100644 --- a/yaksh/templates/register/password_reset_form.html +++ b/yaksh/templates/register/password_reset_form.html @@ -1,7 +1,5 @@ {% 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 pagetitle %} Email will be send to the registered email address {% endblock %} {% block content %} <form action="" method="post"> {% csrf_token %} |