Files
2025-04-17 08:31:03 +02:00

23 lines
644 B
Plaintext

@using MP.SPEC.Components
@using MP.SPEC.Data
@using System.Security.Claims
@using Microsoft.AspNetCore.Components.Authorization
<div class="d-flex w-100 justify-content-between">
<div class="px-2">
<i class="fas fa-user-alt"></i> <b>@userName</b>
</div>
<div class="px-2 fs-4">
<span class="@PageIcon px-2" aria-hidden="true"></span><span>@PageName</span>
</div>
<div class="px-2">
<AskCloseOdl></AskCloseOdl>
</div>
<div class="pe-2">
<button class="btn btn-primary" @onclick="() => FlushCache()" title="Forza Refresh Dati correnti"> Force Reload </button>
</div>
</div>