diff options
author | maheshgudi | 2016-07-11 16:07:04 +0530 |
---|---|---|
committer | maheshgudi | 2016-07-11 16:10:55 +0530 |
commit | 2725f202757694d966d00c413b327bb163fba67f (patch) | |
tree | bcf980d4422dec9bd896638999b77b5a4149839f /yaksh/templates/register/password_change_done.html | |
parent | 87f3f30b4288bcc867fd0f18f7d845484aaf910c (diff) | |
download | online_test-2725f202757694d966d00c413b327bb163fba67f.tar.gz online_test-2725f202757694d966d00c413b327bb163fba67f.tar.bz2 online_test-2725f202757694d966d00c413b327bb163fba67f.zip |
changed templates for forgot password and change password
Diffstat (limited to 'yaksh/templates/register/password_change_done.html')
-rw-r--r-- | yaksh/templates/register/password_change_done.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/yaksh/templates/register/password_change_done.html b/yaksh/templates/register/password_change_done.html new file mode 100644 index 0000000..fef07d1 --- /dev/null +++ b/yaksh/templates/register/password_change_done.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} + +{% block title %}Password change successful{% endblock %} +{% block pagetitle %}Online Test {% 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 %}
\ No newline at end of file |