From 8543fed00c912877375b0835b63c765baed654e2 Mon Sep 17 00:00:00 2001 From: Akshen Date: Mon, 13 May 2019 16:15:57 +0530 Subject: Minor Updates - Proposal 1 fields changed - Forgot Password files moved - No search Results Found - Pincode field added --- fossee_manim/templates/registration/base.html | 99 ++++++++++++++++++++++ .../registration/password_change_done.html | 19 +++++ .../registration/password_change_form.html | 16 ++++ .../registration/password_reset_complete.html | 7 ++ .../registration/password_reset_confirm.html | 15 ++++ .../registration/password_reset_done.html | 9 ++ .../registration/password_reset_form.html | 14 +++ 7 files changed, 179 insertions(+) create mode 100644 fossee_manim/templates/registration/base.html create mode 100644 fossee_manim/templates/registration/password_change_done.html create mode 100644 fossee_manim/templates/registration/password_change_form.html create mode 100644 fossee_manim/templates/registration/password_reset_complete.html create mode 100644 fossee_manim/templates/registration/password_reset_confirm.html create mode 100644 fossee_manim/templates/registration/password_reset_done.html create mode 100644 fossee_manim/templates/registration/password_reset_form.html (limited to 'fossee_manim/templates/registration') diff --git a/fossee_manim/templates/registration/base.html b/fossee_manim/templates/registration/base.html new file mode 100644 index 0000000..1a4945d --- /dev/null +++ b/fossee_manim/templates/registration/base.html @@ -0,0 +1,99 @@ + + +
+ +Your password has been reset.
+ +{% endblock %} \ No newline at end of file diff --git a/fossee_manim/templates/registration/password_reset_confirm.html b/fossee_manim/templates/registration/password_reset_confirm.html new file mode 100644 index 0000000..9f5b47a --- /dev/null +++ b/fossee_manim/templates/registration/password_reset_confirm.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} +{% block pagetitle %}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 %} \ No newline at end of file diff --git a/fossee_manim/templates/registration/password_reset_done.html b/fossee_manim/templates/registration/password_reset_done.html new file mode 100644 index 0000000..0d335b8 --- /dev/null +++ b/fossee_manim/templates/registration/password_reset_done.html @@ -0,0 +1,9 @@ +{% 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 %} \ No newline at end of file diff --git a/fossee_manim/templates/registration/password_reset_form.html b/fossee_manim/templates/registration/password_reset_form.html new file mode 100644 index 0000000..c67fdfc --- /dev/null +++ b/fossee_manim/templates/registration/password_reset_form.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block pagetitle %} + Email will be send to the registered email address +{% endblock %} + +{% block content %} + +{% endblock content %} \ No newline at end of file -- cgit