diff options
author | Prabhu Ramachandran | 2017-02-01 17:19:15 +0530 |
---|---|---|
committer | GitHub | 2017-02-01 17:19:15 +0530 |
commit | adc31775c1ca1481c6898fb8ef13548a14095d19 (patch) | |
tree | d182fa8edec776231286b4d4f402fdcf81361ead /yaksh/templates/registration | |
parent | d400e03973f1eef6847c8b6f88ac14e39485bf00 (diff) | |
parent | 8427da2f08ae590b427027abe36351018c685f8e (diff) | |
download | online_test-adc31775c1ca1481c6898fb8ef13548a14095d19.tar.gz online_test-adc31775c1ca1481c6898fb8ef13548a14095d19.tar.bz2 online_test-adc31775c1ca1481c6898fb8ef13548a14095d19.zip |
Merge pull request #198 from prathamesh920/password_reset_issue
Forgot Password and Reset Issue Resolved
Diffstat (limited to 'yaksh/templates/registration')
6 files changed, 65 insertions, 0 deletions
diff --git a/yaksh/templates/registration/password_change_done.html b/yaksh/templates/registration/password_change_done.html new file mode 100644 index 0000000..14df20c --- /dev/null +++ b/yaksh/templates/registration/password_change_done.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block pagetitle %}Password change successful{% endblock %} +{% block script %} +<script type="text/javascript"> + window.setTimeout(function() + { + location.href="{{ URL_ROOT }}/exam/" + }, 2000); +</script> +{% endblock %} +{% block content %} +<h3>Your password has been changed successfully.</h3> +<h4>Redirecting ...</h4> +{% endblock %} diff --git a/yaksh/templates/registration/password_change_form.html b/yaksh/templates/registration/password_change_form.html new file mode 100644 index 0000000..b618410 --- /dev/null +++ b/yaksh/templates/registration/password_change_form.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} +<!DOCTYPE html> +{% block pagetitle %} Change Password {% endblock %} + +{% block content %} +<form action="" method="post" > + {% csrf_token %} + <center> + <table class=span1> + {{ 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> +</form> +{% endblock content %} diff --git a/yaksh/templates/registration/password_reset_complete.html b/yaksh/templates/registration/password_reset_complete.html new file mode 100644 index 0000000..0c1bae2 --- /dev/null +++ b/yaksh/templates/registration/password_reset_complete.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} +{% block pagetitle %}Password reset complete{% endblock %} +{% block content %} +<p>Your password has been reset. </p> +<p><a href="{{ login_url }}">Log in</a></p> +{% endblock %} diff --git a/yaksh/templates/registration/password_reset_confirm.html b/yaksh/templates/registration/password_reset_confirm.html new file mode 100644 index 0000000..1b0a1b7 --- /dev/null +++ b/yaksh/templates/registration/password_reset_confirm.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} +{% block pagetitle %}Reset Password{% endblock %} + +{% block content %} + {% 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> + </form> + {% else %} + <p>This reset link is no longer valid!</p> + {% endif %} +{% endblock %} diff --git a/yaksh/templates/registration/password_reset_done.html b/yaksh/templates/registration/password_reset_done.html new file mode 100644 index 0000000..1ac7b60 --- /dev/null +++ b/yaksh/templates/registration/password_reset_done.html @@ -0,0 +1,3 @@ +{% extends "base.html" %} +{% block title %}Password reset successful{% endblock %} +{% block pagetitle %} Instruction for setting new password has been mailed to your registered email address {% endblock %} diff --git a/yaksh/templates/registration/password_reset_form.html b/yaksh/templates/registration/password_reset_form.html new file mode 100644 index 0000000..0444584 --- /dev/null +++ b/yaksh/templates/registration/password_reset_form.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} +{% block pagetitle %} Email will be send to the registered email address {% endblock %} +{% block content %} +<form action="" method="post"> + {% csrf_token %} + {{ form }} + <button class="btn" type="submit">Request</button> + <a class="btn" href="{{URL_ROOT}}/exam/login/">Cancel</a> +</form> +{% endblock content %} |