diff options
author | ankitjavalkar | 2018-10-15 15:24:36 +0530 |
---|---|---|
committer | GitHub | 2018-10-15 15:24:36 +0530 |
commit | f2a03ec0fa32e0f23d1f8215209450c3251f691b (patch) | |
tree | f80de07675fc4373500564e9c66fbe6904453e3a /yaksh/templates/registration/password_reset_confirm.html | |
parent | 1a2bea3da65a5b2b98aaa15085d474c50fb55038 (diff) | |
parent | 9fb9fd3d5afc257cb9c2f6e15b5a3f96b2ec8d51 (diff) | |
download | online_test-f2a03ec0fa32e0f23d1f8215209450c3251f691b.tar.gz online_test-f2a03ec0fa32e0f23d1f8215209450c3251f691b.tar.bz2 online_test-f2a03ec0fa32e0f23d1f8215209450c3251f691b.zip |
Merge pull request #524 from FOSSEE/rebase-ui-try2
UI Changes to Yaksh [FOSSEE Fellowship 2018]
Diffstat (limited to 'yaksh/templates/registration/password_reset_confirm.html')
-rw-r--r-- | yaksh/templates/registration/password_reset_confirm.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/yaksh/templates/registration/password_reset_confirm.html b/yaksh/templates/registration/password_reset_confirm.html index 1b0a1b7..49563ac 100644 --- a/yaksh/templates/registration/password_reset_confirm.html +++ b/yaksh/templates/registration/password_reset_confirm.html @@ -1,15 +1,24 @@ {% extends "base.html" %} -{% block pagetitle %}Reset Password{% 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>Reset Password</h4> {% if validlink %} <p>Please enter your new password twice so we can verify you typed it in correctly</p>. <form method="post"> {% csrf_token %} {{ form.as_p }} - <button class= "btn" type="submit">Submit</button> + <button class= "btn btn-success" type="submit">Submit</button> </form> {% else %} <p>This reset link is no longer valid!</p> {% endif %} +</center> {% endblock %} |