From a298f5ff4c5d1c60430bd962232a3af1bf9a0913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rez?= Date: Tue, 19 Sep 2023 02:18:52 +0100 Subject: [PATCH] chore: reconfig templates to use openid auth --- resources/templates/home.html.j2 | 10 +- resources/templates/login.html.j2 | 28 +- resources/templates/partials/footer.html.j2 | 8 +- .../templates/partials/form-user.html.j2 | 31 +- resources/templates/partials/header.html.j2 | 4 +- .../partials/modal_edit_user.html.j2 | 21 +- resources/templates/partials/navbar.html.j2 | 10 +- .../templates/partials/openid_login.html.j2 | 13 + resources/templates/partials/symbols.html.j2 | 3 + resources/templates/signup.html.j2 | 16 +- resources/templates/user_settings.html.j2 | 10 +- resources/templates/users.html.j2 | 20 +- src/handlers/login_user.rs | 0 src/users/openid.rs | 631 ++++++++++++++++++ 14 files changed, 756 insertions(+), 49 deletions(-) create mode 100644 resources/templates/partials/openid_login.html.j2 create mode 100644 src/handlers/login_user.rs create mode 100644 src/users/openid.rs diff --git a/resources/templates/home.html.j2 b/resources/templates/home.html.j2 index 9698c1c..8473994 100644 --- a/resources/templates/home.html.j2 +++ b/resources/templates/home.html.j2 @@ -1,11 +1,11 @@ {% include "partials/header.html.j2" %} -
+

- {{title | default(value='')}} +
A Cryptographic Library
you can TRust

- {{subtitle | default(value='')}} +

Fast, Secure, Agile

Customizable to contexts and needs

@@ -26,8 +26,8 @@ Code -

A Documentation Library

-

For production and developers.

+

A modern Cryptographic Library

+

Static library for production and developers.

Read more
+{% if not signin_target %} + {% set signin_target = "" %} +{% endif %} +
{% include "partials/mini_navbar.html.j2" %}
- {{ main_name | default(value= + TII Cryptographiuc Library
@@ -45,8 +48,8 @@ Checking ...
- {% if use_mail %} @@ -59,13 +62,21 @@ {% endif %}
+ {% if signin_target == "" %} + {% include "partials/openid_login.html.j2" %} + {% else %} +
+ +
Link credentials
+
+ {% endif %} {% if with_totp %} {% endif %} +
diff --git a/resources/templates/partials/footer.html.j2 b/resources/templates/partials/footer.html.j2 index ac87236..d05992c 100644 --- a/resources/templates/partials/footer.html.j2 +++ b/resources/templates/partials/footer.html.j2 @@ -2,11 +2,11 @@
#} {% include "partials/symbols.html.j2" %} -{% include "partials/footer.html.j2" %} +{% include "partials/footer.html.j2" %} \ No newline at end of file diff --git a/resources/templates/user_settings.html.j2 b/resources/templates/user_settings.html.j2 index f87c150..ced594b 100644 --- a/resources/templates/user_settings.html.j2 +++ b/resources/templates/user_settings.html.j2 @@ -1,10 +1,10 @@ {% include "partials/header.html.j2" %} {% if usr_roles is containing('new') %} - {% set logo= assets_url~"/images/logo_new.svg" %} + {% set logo= assets_url~"/images/tii_cl_logo_new.svg" %} {% elif usr_roles is containing('dev') %} - {% set logo= assets_url~"/images/logo_dev.svg" %} + {% set logo= assets_url~"/images/tii_cl_logo_dev.svg" %} {% else %} - {% set logo= assets_url~"/images/logo.svg" %} + {% set logo= assets_url~"/images/tii_cl_logo.svg" %} {% endif %}
@@ -17,7 +17,7 @@ >
@@ -130,4 +130,4 @@ const totp_in = () => { {% endif %} {% include "partials/symbols.html.j2" %} -{% include "partials/footer.html.j2" %} +{% include "partials/footer.html.j2" %} \ No newline at end of file diff --git a/resources/templates/users.html.j2 b/resources/templates/users.html.j2 index f681e41..333e12a 100644 --- a/resources/templates/users.html.j2 +++ b/resources/templates/users.html.j2 @@ -129,11 +129,16 @@
- +
Is Admin
+ +
+ Open IDs +
+
TOTP @@ -147,7 +152,8 @@ - {% for user in usrs %} + {% if users %} + {% for user in users %} {% if loop.index % 2 == 0%} {% set tr_css="bg-gray-100 dark:bg-gray-800" %} {% else %} @@ -236,6 +242,13 @@ {% if user.isadmin == true %} admin {% endif %}
+ +
+ {% if users_openids and users_openids[loop.index0] %} + {{ users_openids[loop.index0] | default(value='') }} + {% endif %} +
+
@@ -268,6 +281,7 @@ {% endfor %} + {% endif %} @@ -275,7 +289,7 @@