Files
mapo-core/MP.Prog/Components/CmpTop.razor
T
Samuele Locatelli d9fa23b17b PROG:
- Aggiunta preliminare gestione UserName
- verifica gestione auth windows
- update in prod
2024-10-22 12:06:25 +02:00

18 lines
428 B
Plaintext

<div class="d-flex justify-content-between pt-3">
<div class="px-2">
<i class="fas fa-user-alt"></i> <b>@UserName</b>
</div>
<div class="px-2 d-none d-lg-block text-center h4 text-truncate">
<span class="@PageIcon" aria-hidden="true"></span> @PageName
</div>
<div class="px-2 text-end">
@if (ShowSearch)
{
<SearchMod></SearchMod>
}
</div>
</div>