From fde8470c5e47434df8c854bd3135763062fada12 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Thu, 5 Mar 2020 19:28:24 +0530 Subject: fixed file structure and added forgot passowrd link --- .../admin/templates/clearable_file_input.html | 13 ++ .../static/admin/templates/forgot-password.html | 54 ++++++ arduino_blog/static/admin/templates/message.html | 17 ++ arduino_blog/static/admin/templates/profile.html | 91 +++++++++ .../registration/password_change_done.html | 19 ++ .../registration/password_change_form.html | 18 ++ .../registration/password_reset_complete.html | 19 ++ .../registration/password_reset_confirm.html | 64 +++++++ .../registration/password_reset_done.html | 20 ++ .../registration/password_reset_form.html | 30 +++ .../static/admin/templates/update-password.html | 41 ++++ .../static/admin/templates/user-login.html | 74 ++++++++ .../static/admin/templates/user-register.html | 108 +++++++++++ .../static/admin/templates/view-profile.html | 210 +++++++++++++++++++++ 14 files changed, 778 insertions(+) create mode 100644 arduino_blog/static/admin/templates/clearable_file_input.html create mode 100644 arduino_blog/static/admin/templates/forgot-password.html create mode 100644 arduino_blog/static/admin/templates/message.html create mode 100644 arduino_blog/static/admin/templates/profile.html create mode 100644 arduino_blog/static/admin/templates/registration/password_change_done.html create mode 100644 arduino_blog/static/admin/templates/registration/password_change_form.html create mode 100644 arduino_blog/static/admin/templates/registration/password_reset_complete.html create mode 100644 arduino_blog/static/admin/templates/registration/password_reset_confirm.html create mode 100644 arduino_blog/static/admin/templates/registration/password_reset_done.html create mode 100644 arduino_blog/static/admin/templates/registration/password_reset_form.html create mode 100644 arduino_blog/static/admin/templates/update-password.html create mode 100644 arduino_blog/static/admin/templates/user-login.html create mode 100644 arduino_blog/static/admin/templates/user-register.html create mode 100644 arduino_blog/static/admin/templates/view-profile.html (limited to 'arduino_blog/static') diff --git a/arduino_blog/static/admin/templates/clearable_file_input.html b/arduino_blog/static/admin/templates/clearable_file_input.html new file mode 100644 index 0000000..4002c00 --- /dev/null +++ b/arduino_blog/static/admin/templates/clearable_file_input.html @@ -0,0 +1,13 @@ +{% if widget.is_initial %} +
+

{{ widget.initial_text }}: {{ widget.value }} + {% if not widget.required %} +     + +   + {% endif %} +
+{% endif %} + + +{% if widget.is_initial %}

{% endif %} \ No newline at end of file diff --git a/arduino_blog/static/admin/templates/forgot-password.html b/arduino_blog/static/admin/templates/forgot-password.html new file mode 100644 index 0000000..24eb95c --- /dev/null +++ b/arduino_blog/static/admin/templates/forgot-password.html @@ -0,0 +1,54 @@ +{% extends "website/templates/base.html" %} +{% load widget_tweaks %} +{% block content %} +{% load static %} + + +


+
+
+

Forgot Password

+ +
+
+
Already Registered?
+
Login
+
+ +
+ +
+{% endblock %} + +{% block javascript %} + $(".alert").alert(); +{% endblock %} \ No newline at end of file diff --git a/arduino_blog/static/admin/templates/message.html b/arduino_blog/static/admin/templates/message.html new file mode 100644 index 0000000..6493cbe --- /dev/null +++ b/arduino_blog/static/admin/templates/message.html @@ -0,0 +1,17 @@ +{% extends 'website/templates/base.html' %} +{% load widget_tweaks %} +{% load static %} +{% block title %}Successful{% endblock %} +{% block cssblock %} + +{% endblock %} +{% block search %} +{% endblock %} +{% block content %} +

+

Thank you for registering.
+Your account activation link has been sent to the email id provided.

+ +{% endblock %} + + diff --git a/arduino_blog/static/admin/templates/profile.html b/arduino_blog/static/admin/templates/profile.html new file mode 100644 index 0000000..6a96243 --- /dev/null +++ b/arduino_blog/static/admin/templates/profile.html @@ -0,0 +1,91 @@ +{% extends 'website/templates/base.html' %} +{% load widget_tweaks %} +{% load static %} + +{% block title %}User Profile{% endblock %} +{% block cssblock %}{% endblock %} +{% block heading %} + User Profile +{% endblock %} + +{% block content %} + +
+
+ +
+
+ +
+ Field required +

Fields required to access basic features of forum
+ +{% endblock %} + + diff --git a/arduino_blog/static/admin/templates/registration/password_change_done.html b/arduino_blog/static/admin/templates/registration/password_change_done.html new file mode 100644 index 0000000..36ce7b4 --- /dev/null +++ b/arduino_blog/static/admin/templates/registration/password_change_done.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block title %} Password change successful {% endblock %} +{% block pagetitle %} Password reset done{% endblock %} +{% block formtitle %} Open Source Hardware Project {% endblock %} +{% block content %} +{% load static %} + +
+
+
+
+

Your password has been changed successfully.

+

Go to home page.

+
+
+
+
+{% endblock %} \ No newline at end of file diff --git a/arduino_blog/static/admin/templates/registration/password_change_form.html b/arduino_blog/static/admin/templates/registration/password_change_form.html new file mode 100644 index 0000000..21f33e8 --- /dev/null +++ b/arduino_blog/static/admin/templates/registration/password_change_form.html @@ -0,0 +1,18 @@ +{% extends MODERATOR_ACTIVATED|yesno:'website/templates/moderator/base.html,website/templates/base.html' %} + +{% block title %} Change Password {% endblock %} + +{% block pagetitle %} FOSSEE Forums {% endblock %} + +{% block content %} +
+ {% csrf_token %} +
+ + {{ form }} +
+
+
+
+
+{% endblock content %} diff --git a/arduino_blog/static/admin/templates/registration/password_reset_complete.html b/arduino_blog/static/admin/templates/registration/password_reset_complete.html new file mode 100644 index 0000000..0d8e410 --- /dev/null +++ b/arduino_blog/static/admin/templates/registration/password_reset_complete.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% block title %} Password reset complete {% endblock %} +{% block pagetitle %} Password reset {% endblock %} +{% block formtitle %} Open Source Hardware Project {% endblock %} +{% block content %} +{% load static %} + +
+
+
+
+

Your password has been reset.

+

Log in

+
+
+
+
+ +{% endblock %} diff --git a/arduino_blog/static/admin/templates/registration/password_reset_confirm.html b/arduino_blog/static/admin/templates/registration/password_reset_confirm.html new file mode 100644 index 0000000..4787a8b --- /dev/null +++ b/arduino_blog/static/admin/templates/registration/password_reset_confirm.html @@ -0,0 +1,64 @@ +{% extends "base.html" %} +{% block title %}Reset Password{% endblock %} +{% block pagetitle %} Password reset {% endblock %} +{% block formtitle %} Open Source Hardware Project {% endblock %} +{% block content %} +{% load static %} +
+
+
+
+

Password Reset

+
+ {% 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/arduino_blog/static/admin/templates/registration/password_reset_done.html b/arduino_blog/static/admin/templates/registration/password_reset_done.html new file mode 100644 index 0000000..acc337e --- /dev/null +++ b/arduino_blog/static/admin/templates/registration/password_reset_done.html @@ -0,0 +1,20 @@ + +{% extends "base.html" %} +{% block title %} Password reset successful {% endblock %} +{% block pagetitle %} Open Source Hardware Project {% endblock %} +{% block formtitle %} Email will be send to the registered email address {% endblock %} +{% block content %} +{% load static %} +
+
+
+
+

Password reset

+ +
+
+
+
+{% endblock %} diff --git a/arduino_blog/static/admin/templates/registration/password_reset_form.html b/arduino_blog/static/admin/templates/registration/password_reset_form.html new file mode 100644 index 0000000..c852809 --- /dev/null +++ b/arduino_blog/static/admin/templates/registration/password_reset_form.html @@ -0,0 +1,30 @@ + +{% extends "base.html" %} +{% block title %} Forgot Password {% endblock %} +{% block pagetitle %} Open Source Hardware Project {% endblock %} +{% block formtitle %} Email will be send to the registered email address {% endblock %} +{% block content %} +{% load static %} +
+
+
+
+

Recovery Email

+ +
+
+
+
+{% endblock content %} diff --git a/arduino_blog/static/admin/templates/update-password.html b/arduino_blog/static/admin/templates/update-password.html new file mode 100644 index 0000000..33eb1d6 --- /dev/null +++ b/arduino_blog/static/admin/templates/update-password.html @@ -0,0 +1,41 @@ +{% extends "website/templates/base.html" %} +{% load widget_tweaks %} +{% block content %} +{% load static %} + + +


+
+
+

Update Password

+ +
+
Already Registered?
+
Login
+
+
+
+{% endblock %} + diff --git a/arduino_blog/static/admin/templates/user-login.html b/arduino_blog/static/admin/templates/user-login.html new file mode 100644 index 0000000..d0717c0 --- /dev/null +++ b/arduino_blog/static/admin/templates/user-login.html @@ -0,0 +1,74 @@ +{% extends "website/templates/base.html" %} +{% load widget_tweaks %} +{% block content %} +{% load static %} + + +


+
+
+

Sign In

+
+
+
Need new account ?
+
Register
+
+
+ +
+{% endblock %} diff --git a/arduino_blog/static/admin/templates/user-register.html b/arduino_blog/static/admin/templates/user-register.html new file mode 100644 index 0000000..cfa38d9 --- /dev/null +++ b/arduino_blog/static/admin/templates/user-register.html @@ -0,0 +1,108 @@ +{% extends 'website/templates/base.html' %} +{% load widget_tweaks %} +{% load static %} +{% block title %}Register{% endblock %} +{% block cssblock %} + +{% endblock %} +{% block search %} +{% endblock %} +{% block content %} + +
+

Register

+
+
+

The activation link of the account will be sent to the Email id provided.

+
+
{% csrf_token %} +
+
+
+ + {% render_field form.username class+="form-control username" tabindex="1" placeholder="Desired Username" %} +
+ {{ form.username.errors }} +
+
+
+
+
+ + {% render_field form.email class+="form-control email" tabindex="1" placeholder="Your Email" %} +
+ {{ form.email.errors }} +
+
+
+
+
+ + {% render_field form.password class+="form-control password" tabindex="1" placeholder="Enter password" %} +
+ {{ form.password.errors }} +
+
+
+
+
+ + {% render_field form.password_confirm class+="form-control password_confirm" tabindex="1" placeholder="Retype Password" %} +
+ {{ form.password_confirm.errors }} +
+
+
+
+
+ +
+
+
+
+ + +
+ +
+ + +
+


+
+
Already Registered?
+
Login
+
+ + +
+ + +{% endblock %} +{% block uncompressjsblock %} + +{% endblock %} + + diff --git a/arduino_blog/static/admin/templates/view-profile.html b/arduino_blog/static/admin/templates/view-profile.html new file mode 100644 index 0000000..3416928 --- /dev/null +++ b/arduino_blog/static/admin/templates/view-profile.html @@ -0,0 +1,210 @@ +{% extends MODERATOR_ACTIVATED|yesno:'website/templates/moderator/base.html,website/templates/base.html' %} +{% load widget_tweaks %} +{% load static %} +{% load count_tags %} + +{% block title %}User Profile{% endblock %} + +{% block cssblock %} +{% endblock %} + +{% block heading %} + User Profile +{% endblock %} + +{% block content %} + +

+
+

{{profile.user.username}}'s Dashboard

+
+

+ +
+ + + +
+ +
+

+

+
+
+ + +
+
+
+

+
+ +
+ +
+
+
+ + {% if show %} + + + Field required +

Fields required to access basic features of forum
+ {% endif %} + +
+
+
+
+ +
+ +

+

+ + {% for question in questions %} +
+ + {{ question.title }} + +
+ + Asked on:{{ question.date_created }} + +
+ {% endfor %} + +
+

+
+ +
+ +

+

+ + {% for answer in answers%} +
+ + {{ answer.question.title }} + +

+ + Replied on:{{ answer.date_created }} + + +
+ {% endfor %} + +
+

+ +
+
+
+ +{% endblock %} \ No newline at end of file -- cgit