From 2725f202757694d966d00c413b327bb163fba67f Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Mon, 11 Jul 2016 16:07:04 +0530 Subject: changed templates for forgot password and change password --- yaksh/templates/register/password_change_done.html | 16 ++++++++++++++++ yaksh/templates/register/password_change_form.html | 18 ++++++++++++++++++ yaksh/templates/register/password_reset_complete.html | 7 +++++++ yaksh/templates/register/password_reset_confirm.html | 17 +++++++++++++++++ yaksh/templates/register/password_reset_done.html | 4 ++++ yaksh/templates/register/password_reset_form.html | 12 ++++++++++++ 6 files changed, 74 insertions(+) create mode 100644 yaksh/templates/register/password_change_done.html create mode 100644 yaksh/templates/register/password_change_form.html create mode 100644 yaksh/templates/register/password_reset_complete.html create mode 100644 yaksh/templates/register/password_reset_confirm.html create mode 100644 yaksh/templates/register/password_reset_done.html create mode 100644 yaksh/templates/register/password_reset_form.html (limited to 'yaksh/templates/register') 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 %} + +{% endblock %} +{% block content %} +
Your password has been reset.
+ +{% endblock %} diff --git a/yaksh/templates/register/password_reset_confirm.html b/yaksh/templates/register/password_reset_confirm.html new file mode 100644 index 0000000..5566499 --- /dev/null +++ b/yaksh/templates/register/password_reset_confirm.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% block title %}Reset Password{% endblock %} +{% block pagetitle %} Online Test {% endblock %} +{% block formtitle %} Reset password {% endblock %} + +{% block content %} + {% if validlink %} +Please enter your new password twice so we can verify you typed it in correctly
. + + {% else %} +This reset link is no longer valid!
+ {% endif %} +{% endblock %} diff --git a/yaksh/templates/register/password_reset_done.html b/yaksh/templates/register/password_reset_done.html new file mode 100644 index 0000000..ace3cc9 --- /dev/null +++ b/yaksh/templates/register/password_reset_done.html @@ -0,0 +1,4 @@ +{% 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 %} diff --git a/yaksh/templates/register/password_reset_form.html b/yaksh/templates/register/password_reset_form.html new file mode 100644 index 0000000..0dbaf09 --- /dev/null +++ b/yaksh/templates/register/password_reset_form.html @@ -0,0 +1,12 @@ +{% 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 content %} + +{% endblock content %} -- cgit