yogibook-aury/public/include/profiletopbar.php
2024-09-18 16:47:42 +02:00

20 lines
1.5 KiB
PHP

<div class="dropdown d-inline-block">
<button type="button" class="btn header-item user text-start d-flex align-items-center" id="page-header-user-dropdown-v"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img class="rounded-circle header-profile-user" src="upload/users/<?php echo $avatarname; ?>"
alt="Header Avatar">
<span class="d-none d-xl-inline-block ms-2 fw-medium font-size-15"><?php echo $nameuser; ?> </span>
</button>
<div class="dropdown-menu dropdown-menu-end pt-0">
<div class="p-3 border-bottom">
<h6 class="mb-0"><?php echo $nameuser; ?> </h6>
</div>
<a class="dropdown-item" href="profile"><i class="ti-user text-muted mr-2"></i> Profilo utente</a>
<a class="dropdown-item" href="notification.php"><i class="ti-settings text-muted mr-2"></i> Notifiche</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="logout"><i class="mdi mdi-logout text-muted font-size-16 align-middle me-2"></i> <span class="align-middle">Logout</span></a>
</div>
</div>