36 lines
1.9 KiB
PHP
Executable File
36 lines
1.9 KiB
PHP
Executable File
<aside id="barre_laterale_d" class="bg-white border-start d-none d-xl-block" style="width: 280px; position: sticky; top: 60px; height: calc(100vh - 60px); overflow-y: auto;">
|
|
<div class="p-4">
|
|
<h6 class="text-uppercase small fw-bold text-muted mb-4 text-center border-bottom pb-2"><?= _("CONTEXTE DE GESTION") ?></h6>
|
|
|
|
<div class="text-center mb-4">
|
|
<div class="photo-container mb-3">
|
|
<img src="data:image/png;base64,<?= $_SESSION['photoAssureCrypte'] ?>"
|
|
class="rounded-circle shadow border border-3 border-white transition hover-scale"
|
|
width="100" height="100" style="object-fit: cover;">
|
|
</div>
|
|
<h6 class="fw-bold mb-1"><?= _($_SESSION['nomSociete']) ?></h6>
|
|
<span class="badge bg-success-light text-success rounded-pill px-3"><?= _("Garant Actif") ?></span>
|
|
</div>
|
|
|
|
<div class="vstack gap-2">
|
|
<?php if ($_SESSION['numeroClient_C']): ?>
|
|
<div class="p-3 bg-light rounded-3 border-0">
|
|
<div class="text-muted small mb-1"><?= _("Numéro Client") ?></div>
|
|
<div class="fw-bold text-primary"><?= $_SESSION['numeroClient_C'] ?></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($_SESSION['numeroPolice_C']): ?>
|
|
<div class="p-3 bg-light rounded-3 border-0">
|
|
<div class="text-muted small mb-1"><?= _("Police en cours") ?></div>
|
|
<div class="fw-bold"><?= $_SESSION['numeroPolice_C'] ?></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<div class="text-center mt-5 opacity-25 grayscale">
|
|
<img src="Bootstrap_new/images/new/favicon.png" width="30">
|
|
<p class="small mt-2 mb-0">© 2026 INTER SANTE</p>
|
|
</div>
|
|
</div>
|
|
</aside>
|