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 @@ + + + + + + {% block title %} + HomePage + {% endblock %} + + + + + + + + + + + + + + {% block extra %} + + {% endblock %} + + + {% block header %} + + {% endblock %} + + {% block content %} +

+

Base Template Content. Please override me

+ {% endblock %} + + +
+ \ No newline at end of file diff --git a/fossee_manim/templates/registration/password_change_done.html b/fossee_manim/templates/registration/password_change_done.html new file mode 100644 index 0000000..93b93cb --- /dev/null +++ b/fossee_manim/templates/registration/password_change_done.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block pagetitle %} + Password change successful +{% endblock %} + +{% block script %} + +{% endblock %} + +{% block content %} +

Your password has been changed successfully.

+

Redirecting ...

+{% endblock %} \ No newline at end of file diff --git a/fossee_manim/templates/registration/password_change_form.html b/fossee_manim/templates/registration/password_change_form.html new file mode 100644 index 0000000..918f820 --- /dev/null +++ b/fossee_manim/templates/registration/password_change_form.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} + +{% block pagetitle %} Change Password {% endblock %} + +{% block content %} +
+ {% csrf_token %} +
+ + {{ form }} +
+
+
+
+
+{% endblock content %} \ No newline at end of file diff --git a/fossee_manim/templates/registration/password_reset_complete.html b/fossee_manim/templates/registration/password_reset_complete.html new file mode 100644 index 0000000..1ff3f76 --- /dev/null +++ b/fossee_manim/templates/registration/password_reset_complete.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} + +{% block pagetitle %}Password reset complete{% endblock %} +{% block content %} +

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

. +
+ {% csrf_token %} + {{ form.as_p }} + +
+ {% 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 %} +
+ {% csrf_token %} + {{ form }} + + Cancel +
+{% endblock content %} \ No newline at end of file -- cgit