From 95bb4b3c871732f354132fc1571a00b0acbf68ac Mon Sep 17 00:00:00 2001 From: komalsheth286 Date: Thu, 8 Sep 2016 10:44:04 +0530 Subject: First Commit --- .../registration/password_change_done.html | 63 ++++++++++++ .../registration/password_change_form.html | 64 +++++++++++++ .../registration/password_reset_complete.html | 56 +++++++++++ .../registration/password_reset_confirm.html | 106 +++++++++++++++++++++ .../registration/password_reset_done.html | 55 +++++++++++ .../registration/password_reset_form.html | 69 ++++++++++++++ 6 files changed, 413 insertions(+) create mode 100644 website/templates/registration/password_change_done.html create mode 100644 website/templates/registration/password_change_form.html create mode 100644 website/templates/registration/password_reset_complete.html create mode 100644 website/templates/registration/password_reset_confirm.html create mode 100644 website/templates/registration/password_reset_done.html create mode 100644 website/templates/registration/password_reset_form.html (limited to 'website/templates/registration') diff --git a/website/templates/registration/password_change_done.html b/website/templates/registration/password_change_done.html new file mode 100644 index 0000000..7edddfa --- /dev/null +++ b/website/templates/registration/password_change_done.html @@ -0,0 +1,63 @@ +{% extends 'base.html' %} +{% load static %} + + + + + Call for Proposal + + + + + + + + + + + {% block header %} + +{% endblock %} + +
+ +{% block nav %} + + +{% endblock %} + + + +{% block content %} +
+
+
+ + +

Your password has been changed successfully.

+

Redirecting ...

+
+
+
+{% endblock %} \ No newline at end of file diff --git a/website/templates/registration/password_change_form.html b/website/templates/registration/password_change_form.html new file mode 100644 index 0000000..4884aca --- /dev/null +++ b/website/templates/registration/password_change_form.html @@ -0,0 +1,64 @@ +{% extends 'base.html' %} +{% load static %} + + + + + Call for Proposal + + + + + + + + + + + {% block header %} + +{% endblock %} + +
+ +{% block nav %} + + +{% endblock %} + + + +{% block content %} +
+
+
+
+ {% csrf_token %} +
+ + {{ form }} +
+
+
+
+
+
+
+
+{% endblock %} diff --git a/website/templates/registration/password_reset_complete.html b/website/templates/registration/password_reset_complete.html new file mode 100644 index 0000000..c36c1f2 --- /dev/null +++ b/website/templates/registration/password_reset_complete.html @@ -0,0 +1,56 @@ +{% extends 'base.html' %} +{% load static %} + + + + + Call for Proposal + + + + + + + + + + + {% block header %} + +{% endblock %} + +
+ +{% block nav %} + + +{% endblock %} + + + +{% block content %} +
+
+
+

Your password has been reset.

+

Log in

+
+
+
+{% endblock %} diff --git a/website/templates/registration/password_reset_confirm.html b/website/templates/registration/password_reset_confirm.html new file mode 100644 index 0000000..32c6bbd --- /dev/null +++ b/website/templates/registration/password_reset_confirm.html @@ -0,0 +1,106 @@ +{% extends 'base.html' %} +{% load static %} + + + + + Call for Proposal + + + + + + + + + + + {% block header %} + +{% endblock %} + +
+ +{% block nav %} + + +{% endblock %} + + + +{% block content %} +
+
+
+ {% if validlink %} +
+

Please enter your new password twice. + So we can verify you typed it in correctly.

+
+
+
+ +
+ + + + + + + + + + + + +
+
{{ form.new_password1.errors }} + {{ form.new_password1 }}
{{ form.new_password2.errors }} + {{ form.new_password2 }}

+
+
+ {% else %} +

Password reset unsuccessful

+

The password reset link was invalid,
+ possibly because it has already been used.
+ Please request a new password reset.

+ {% endif %} +
+
+
+ + +{% endblock %} diff --git a/website/templates/registration/password_reset_done.html b/website/templates/registration/password_reset_done.html new file mode 100644 index 0000000..1a3dfae --- /dev/null +++ b/website/templates/registration/password_reset_done.html @@ -0,0 +1,55 @@ +{% extends 'base.html' %} +{% load static %} + + + + + Call for Proposal + + + + + + + + + + + {% block header %} + +{% endblock %} + +
+ +{% block nav %} + + +{% endblock %} + + + +{% block content %} +
+
+
+ If an account exists with this email, you would receive the password reset instructions shortly. Please check your spam folder too. +
+
+
+ {% endblock %} diff --git a/website/templates/registration/password_reset_form.html b/website/templates/registration/password_reset_form.html new file mode 100644 index 0000000..5b40bbf --- /dev/null +++ b/website/templates/registration/password_reset_form.html @@ -0,0 +1,69 @@ +{% extends 'base.html' %} +{% load static %} + + + + + Call for Proposal + + + + + + + + + + + {% block header %} + +{% endblock %} + +
+ +{% block nav %} + + +{% endblock %} + + + +{% block content %} +
+
+
+

Recovery Email

+
+Kindly Enter Your Email ID used for Registration. The password Reset link wll be mailed to the same. +

+
+ {% csrf_token %} + {{ form.email.errors }} +

{{ form.email }}

+ + +
+ +
+ +
+
+
+{% endblock %} -- cgit