1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-18 04:20:50 +01:00

Aggiungere CSS personalizzati anche nella pagina di login

This commit is contained in:
Emanuele "ToX" Toscano 2022-03-05 15:26:21 +01:00 committed by GitHub
parent 540dcd4fae
commit 48e3323a7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -188,4 +188,10 @@ echo ' required>
}); });
</script>'; </script>';
$custom_css = html_entity_decode(setting('CSS Personalizzato'));
if (!empty($custom_css)) {
echo '
<style>'.$custom_css.'</style>';
}
include_once App::filepath('include|custom|', 'bottom.php'); include_once App::filepath('include|custom|', 'bottom.php');