36 lines
2.0 KiB
PHP
Executable File
36 lines
2.0 KiB
PHP
Executable File
<?php
|
|
$styleHeader = "";
|
|
$labelTest = "";
|
|
if($_SESSION['bdTests_C'] == "1"){
|
|
$colorTests = $_SESSION['colorTests'];
|
|
$styleHeader = "border-bottom: 4px solid $colorTests;";
|
|
$labelTest = '<span class="badge bg-danger ms-2">'. _("MODE TEST") .'</span>';
|
|
}
|
|
$flag = (est_anglophone()) ? 'england.png' : 'france.png';
|
|
?>
|
|
<header id="header" class="header fixed-top d-flex align-items-center bg-white shadow-sm" style="<?= $style ?>">
|
|
<div class="d-flex align-items-center justify-content-between px-3">
|
|
<a class="logo d-flex align-items-center text-decoration-none">
|
|
<img src="Bootstrap_new/images/new/favicon.png" alt="Logo" style="max-height: 35px;"/>
|
|
<span class="d-none d-lg-block ms-2 fw-bold text-primary">INTER SANTE</span>
|
|
</a>
|
|
<i class="bi bi-list toggle-sidebar-btn fs-3 ms-4 cursor-pointer" style="cursor:pointer"></i>
|
|
</div>
|
|
|
|
<nav class="header-nav ms-auto px-3">
|
|
<ul class="d-flex align-items-center list-unstyled mb-0">
|
|
<li class="nav-item dropdown pe-3">
|
|
<a class="nav-link nav-profile d-flex align-items-center pe-0" href="#" data-bs-toggle="dropdown">
|
|
<div class="bg-primary text-white rounded-circle d-flex align-items-center justify-content-center fw-bold" style="width: 35px; height: 35px;">
|
|
<?php echo $_SESSION['userInitials_C']; ?>
|
|
</div>
|
|
</a>
|
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
|
|
<li class="dropdown-header"><h6><?= $_SESSION['utilisateur_C']; ?></h6></li>
|
|
<li><hr class="dropdown-divider"></li>
|
|
<li><a class="dropdown-item d-flex align-items-center" href="javascript:change_password();"><i class="bi bi-gear"></i><span>Paramètres</span></a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|