diff --git a/controllers/auth_utilities.php b/controllers/auth_utilities.php
new file mode 100644
index 0000000..3ac21ab
--- /dev/null
+++ b/controllers/auth_utilities.php
@@ -0,0 +1,19 @@
+Accueil';
-if (is_logged()) {
- $nav .= '
Planning';
- $nav .= 'Sauveteurs';
-}
-if (has_role('gestionnaire') || has_role('administration')) {
- $nav .= 'Gestion';
-}
-if (has_role('administration')) {
- $nav .= 'Admin';
-}
+// À DÉCOMMENTER quand auth_utilities.php sera chargé :
+// $nav .= 'Planning';
+// $nav .= 'Sauveteurs';
+// $nav .= 'Gestion';
+// $nav .= 'Admin';
-if (is_logged()) {
- $nav .= 'Déconnexion';
- $session = 'Connecté : ' . htmlentities($_SESSION['login']) . ' (' . ($_SESSION['role'] ?: 'lecture') . ')';
-} else {
- $nav .= 'Connexion';
- $session = 'Non connecté';
-}
+$nav .= 'Planning';
+$nav .= 'Sauveteurs';
+$nav .= 'Gestion';
+$nav .= 'Admin';
+
+$nav .= 'Connexion';
+
+// $session = 'Connecté : ' . htmlentities($_SESSION['login']) . ' (' . ($_SESSION['role'] ?: 'lecture') . ')';
+$session = 'Non connecté';
-// Notification flash
$notif = '';
-if (!empty($_SESSION['notification'])) {
- $notif = '' . htmlentities($_SESSION['notification']) . '
';
- unset($_SESSION['notification']);
-}
+// if (!empty($_SESSION['notification'])) {
+// $notif = '' . htmlentities($_SESSION['notification']) . '
';
+// unset($_SESSION['notification']);
+// }
?>