17 lines
872 B
PHP
17 lines
872 B
PHP
<header id="header" class="header fixed-top d-flex align-items-center">
|
|
<div class="d-flex align-items-center justify-content-between px-4">
|
|
<a class="logo d-flex align-items-center text-decoration-none">
|
|
<div class="bg-primary p-2 rounded-3 me-2">
|
|
<img src="<?=$racineWeb?>Bootstrap_new/images/new/favicon.png" alt="Logo" height="25">
|
|
</div>
|
|
<span class="fw-800 text-primary fs-5 tracking-tight">INTER SANTÉ</span>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="ms-auto d-flex align-items-center pe-4">
|
|
<button id="showSideNav" class="btn btn-light rounded-pill border-0 shadow-sm px-3 me-3 text-primary fw-bold">
|
|
<i class="bi bi-layout-sidebar-reverse me-2"></i> Dossier
|
|
</button>
|
|
<div class="initials shadow-sm"><?= $_SESSION['userInitials_C'] ?></div>
|
|
</div>
|
|
</header>
|