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 @@