From b4e625edcd2f81ae2a57d158d3b6920ca5f46818 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Wed, 27 May 2015 09:16:09 +0300 Subject: remove all custom files, will be updated externally --- res/local/template.d/base.html | 20 ++++ res/local/template.d/index.html | 161 ++++++++++++++++++++++++++++++++ res/local/template.d/login.html | 57 +++++++++++ res/local/template.d/login__header.html | 2 + res/local/template.d/pw_reset.html | 107 +++++++++++++++++++++ res/local/template.d/user_signup.html | 98 +++++++++++++++++++ 6 files changed, 445 insertions(+) create mode 100644 res/local/template.d/base.html create mode 100644 res/local/template.d/index.html create mode 100644 res/local/template.d/login.html create mode 100644 res/local/template.d/login__header.html create mode 100644 res/local/template.d/pw_reset.html create mode 100644 res/local/template.d/user_signup.html (limited to 'res/local/template.d') diff --git a/res/local/template.d/base.html b/res/local/template.d/base.html new file mode 100644 index 00000000..135189af --- /dev/null +++ b/res/local/template.d/base.html @@ -0,0 +1,20 @@ + + + + {% block head %} + + + {% block title %}{% endblock %} + + + + + + {% endblock %} + + +
{% block content %}{% endblock %}
+ + + + diff --git a/res/local/template.d/index.html b/res/local/template.d/index.html new file mode 100644 index 00000000..b1289c52 --- /dev/null +++ b/res/local/template.d/index.html @@ -0,0 +1,161 @@ +{% extends "base.html" %} +{% block title %}{{ rz_config__rzdoc_cur__name|safe }} -- Rhizi Prototype{% endblock %} +{% block head %} +{{ super() }} + + + + +{% endblock %} +{% block content %} +
+
+
+ +
+
+ +
+
+ Hello {{ rz_username }}! + Logout +
+
+
+ +
+
+ + +
+
+
+
Layout
+
Filter +
+ +
+
+ + + +
+
+
+
+
+
+
+
+ +
+
+ + +
+
+ +
+ +
+ + +{% endblock %} +{% block devtools %} +
+ + Import: + select files + +
+
+
+ Export +
+
+ + Save + + + + Load + +
+
+ save history + + replay history +
+
+ Copy to URL +
+{% endblock %} diff --git a/res/local/template.d/login.html b/res/local/template.d/login.html new file mode 100644 index 00000000..73492ea2 --- /dev/null +++ b/res/local/template.d/login.html @@ -0,0 +1,57 @@ +{% extends "base.html" %} +{% block title %}Welcome to Rhizi{% endblock %} +{% block head %} +{{ super() }} + + + + +{% endblock %} +{% block content %} +
+ + + + + {% if signup_enabled %} + + {% endif %} + +
+{% endblock %} diff --git a/res/local/template.d/login__header.html b/res/local/template.d/login__header.html new file mode 100644 index 00000000..5f242e61 --- /dev/null +++ b/res/local/template.d/login__header.html @@ -0,0 +1,2 @@ +

Rhizi allows you and your peers to build a shared network of knowledge

+

Make yourself discoverable by sharing your skills, interests and projects

diff --git a/res/local/template.d/pw_reset.html b/res/local/template.d/pw_reset.html new file mode 100644 index 00000000..908f5597 --- /dev/null +++ b/res/local/template.d/pw_reset.html @@ -0,0 +1,107 @@ +{% extends "base.html" %} {% block title %}Rhizi - Password Reset{% endblock %} +{% block head %} {{ super() }} + + + + + +{% endblock %} {% block content %} +
+
+ +
Password Reset
+
+ {% if 'step_0__reset_request_submission' == pw_rst_step %} +
+
+

To have a password renewal link sent to you, please insert the email addressed associated with your Rhizi account.

+
+
+ +
+
+
+
+
+
Submit
+
+ {% elif 'step_1__collect_new_password' == pw_rst_step %} +
+
+

Please set a new account password:

+
+
+ +
+
+ +
+
+
+
+
Submit
+
+
+ {% elif 'general_error' == pw_rst_step %} +
+
+

An error has occurred, please try again later.

+
+
+ {% endif %} +
+
+
+
+
+
+{% endblock %} diff --git a/res/local/template.d/user_signup.html b/res/local/template.d/user_signup.html new file mode 100644 index 00000000..93589d86 --- /dev/null +++ b/res/local/template.d/user_signup.html @@ -0,0 +1,98 @@ +{% extends "base.html" %} {% block title %}Rhizi - Sign up{% endblock %} +{% block head %} {{ super() }} + + + + +{% endblock %} {% block content %} +
+ + + {% if 'activation_success' == state %} +
+

+ Congratulations! your account has been activated.
Please + head over to the login page to access + your account. +

+
+ {% elif 'activation_failure' == state %} +
+

Activation failure,
please try again later.

+
+ {% else %} + +
+{% endblock %} -- cgit v1.3.1