From 0d2e0f5384be0e3b20a8cdcff30ea16cb632841a Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Fri, 31 Aug 2018 17:08:14 +0530 Subject: Added tentative schedule,registration table,guidelines for cfp --- .../registration/password_change_done.html | 47 +++++++++++ .../registration/password_change_form.html | 49 ++++++++++++ .../registration/password_reset_complete.html | 41 ++++++++++ .../registration/password_reset_confirm.html | 91 ++++++++++++++++++++++ .../registration/password_reset_done.html | 41 ++++++++++ .../registration/password_reset_form.html | 26 +++++++ 6 files changed, 295 insertions(+) create mode 100755 static/website/templates/registration/password_change_done.html create mode 100755 static/website/templates/registration/password_change_form.html create mode 100755 static/website/templates/registration/password_reset_complete.html create mode 100755 static/website/templates/registration/password_reset_confirm.html create mode 100755 static/website/templates/registration/password_reset_done.html create mode 100755 static/website/templates/registration/password_reset_form.html (limited to 'static/website/templates/registration') diff --git a/static/website/templates/registration/password_change_done.html b/static/website/templates/registration/password_change_done.html new file mode 100755 index 0000000..67fd9a6 --- /dev/null +++ b/static/website/templates/registration/password_change_done.html @@ -0,0 +1,47 @@ + +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + + + {% block header %} +
+
+

SciPy India 2017

+

Reset Password

+
+
+{% endblock %} + +{% block content %} +
+
+
+ + +

Your password has been changed successfully.

+

Redirecting ...

+
+
+
+{% endblock %} \ No newline at end of file diff --git a/static/website/templates/registration/password_change_form.html b/static/website/templates/registration/password_change_form.html new file mode 100755 index 0000000..a27c585 --- /dev/null +++ b/static/website/templates/registration/password_change_form.html @@ -0,0 +1,49 @@ + +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + + + {% block header %} +
+
+

SciPy India 2017

+

Reset Password

+
+
+{% endblock %} + +{% block content %} +
+
+
+
+
+ {% csrf_token %} +
+ + {{ form }} +
+
+
+
+
+
+
+
+{% endblock %} diff --git a/static/website/templates/registration/password_reset_complete.html b/static/website/templates/registration/password_reset_complete.html new file mode 100755 index 0000000..b8a6131 --- /dev/null +++ b/static/website/templates/registration/password_reset_complete.html @@ -0,0 +1,41 @@ + +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + + + {% block header %} +
+
+

SciPy India 2017

+

Reset Password

+
+
+{% endblock %} + +{% block content %} +
+
+
+
+

Your password has been reset.

+

Please Log in with your new password.

+
+
+
+{% endblock %} diff --git a/static/website/templates/registration/password_reset_confirm.html b/static/website/templates/registration/password_reset_confirm.html new file mode 100755 index 0000000..895e30d --- /dev/null +++ b/static/website/templates/registration/password_reset_confirm.html @@ -0,0 +1,91 @@ +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + + + {% block header %} +
+
+

SciPy India 2017

+

Reset Password

+
+
+{% endblock %} + +{% block content %} +
+
+
+ {% if validlink %} +
+

Please enter your new password twice.

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

+
+
+ {% else %} +

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


+ {% endif %} +
+
+
+ + +{% endblock %} diff --git a/static/website/templates/registration/password_reset_done.html b/static/website/templates/registration/password_reset_done.html new file mode 100755 index 0000000..e161e5e --- /dev/null +++ b/static/website/templates/registration/password_reset_done.html @@ -0,0 +1,41 @@ +{% load static %} + + + + + + + + + + SciPy India 2017 + + + + + + + + +
+ {% block header %} +
+
+

SciPy India 2017

+

Reset Password

+
+
+
+{% 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/static/website/templates/registration/password_reset_form.html b/static/website/templates/registration/password_reset_form.html new file mode 100755 index 0000000..b5d900a --- /dev/null +++ b/static/website/templates/registration/password_reset_form.html @@ -0,0 +1,26 @@ +{% extends "base.html" %} +{% load static %} + {% block content %} +
+
+ +

Recovery Email

+
+ Kindly enter your email ID used for registration. The password reset link will be mailed to the same. +

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

{{ form.email }} + +
+

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