56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
session_start();
|
|
|
|
// Liens de navigation (conditionnels selon session et rôle)
|
|
$nav = '<li><a href="index.php">Accueil</a></li>';
|
|
|
|
if (is_logged()) {
|
|
$nav .= '<li><a href="index.php?route=planning">Planning</a></li>';
|
|
$nav .= '<li><a href="index.php?route=sauveteurs">Sauveteurs</a></li>';
|
|
}
|
|
if (has_role('gestionnaire') || has_role('administration')) {
|
|
$nav .= '<li><a href="index.php?route=gestion">Gestion</a></li>';
|
|
}
|
|
if (has_role('administration')) {
|
|
$nav .= '<li><a href="index.php?route=admin">Admin</a></li>';
|
|
}
|
|
|
|
if (is_logged()) {
|
|
$nav .= '<li><a href="index.php?route=logout" class="nav-right">Déconnexion</a></li>';
|
|
$session = 'Connecté : ' . htmlentities($_SESSION['login']) . ' (' . ($_SESSION['role'] ?: 'lecture') . ')';
|
|
} else {
|
|
$nav .= '<li><a href="index.php?route=auth" class="nav-right">Connexion</a></li>';
|
|
$session = 'Non connecté';
|
|
}
|
|
|
|
// Notification flash
|
|
$notif = '';
|
|
if (!empty($_SESSION['notification'])) {
|
|
$notif = '<div id="notification">' . htmlentities($_SESSION['notification']) . '</div>';
|
|
unset($_SESSION['notification']);
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>SSF — Gestion des sauveteurs</title>
|
|
<link rel="stylesheet" type="text/css" href="css/global.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div class="header-top">
|
|
<a href="index.php">
|
|
<img src="images/logo_ssf.png" alt="Logo SSF">
|
|
<span>Spéléo-Secours Français — Gestion des sauveteurs</span>
|
|
</a>
|
|
</div>
|
|
|
|
<nav><ul><?= $nav ?></ul></nav>
|
|
<div class="session-bar"><?= $session ?></div>
|
|
<?= $notif ?>
|
|
</header>
|
|
|
|
<article>
|