From 8c4cdc81f993bcf4d088d2356a45da8d883bdf01 Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Sun, 2 Jan 2022 21:00:12 +0100 Subject: login/register with midata --- client/templates/client/index.html | 730 ++++++++++++++++++------------------- 1 file changed, 357 insertions(+), 373 deletions(-) (limited to 'client/templates') diff --git a/client/templates/client/index.html b/client/templates/client/index.html index ae3392f..e31ce34 100644 --- a/client/templates/client/index.html +++ b/client/templates/client/index.html @@ -16,400 +16,388 @@ -{% if user.is_authenticated %} - {% if user.is_staff or perms.client.approved %} - + + + + + {% endfor %} + {% endif %} +
+ + add + +
{% else %}
-

Se hai già un account clicca login in alto a destra. Altrimenti clicca registrazione

+

Il tuo utente non è ancora stato approvato.

+
+ {% if user_code %} +

Per approvare l'utente invia il seguente codice al capo branca:

+

{{user_code}}

+ {% else %} +

Per approvare l'utente inserire prima i propri dati personali e medici cliccando il proprio nome in alto a destra. Torna in seguito su questa pagina per i prossimi passaggi.

+

Per approvare l'utente inserire prima i propri dati personali e medici cliccando l'icona person in alto. Torna in seguito su questa pagina per i prossimi passaggi.

+ {% endif %}

@@ -419,7 +407,6 @@ {% block script %} $(document).ready(function(){ - {% if user.is_authenticated %} {% if user.is_staff or perms.client.approved %} $('.collapsible').collapsible(); $('.tap-target').tapTarget(); @@ -428,22 +415,19 @@ $(document).ready(function(){ $('.tap-target').tapTarget('open'); {% endif %} {% endif %} - {% endif %} lazyload(); }); -{% if user.is_authenticated %} - {% if user.is_staff or perms.client.approved %} - $('*').click(function(event) { - if (this === event.target) { - $('.tap-target').tapTarget('close'); - } - }); - function send(id) { - var form = document.getElementById('form') - var action = document.getElementById('action') - action.setAttribute('value', id); - form.submit() - } - {% endif %} +{% if user.is_staff or perms.client.approved %} + $('*').click(function(event) { + if (this === event.target) { + $('.tap-target').tapTarget('close'); + } + }); + function send(id) { + var form = document.getElementById('form') + var action = document.getElementById('action') + action.setAttribute('value', id); + form.submit() + } {% endif %} {% endblock %} -- cgit v1.2.1