24 lines
870 B
Plaintext
24 lines
870 B
Plaintext
@using MP.INVE.Components
|
|
@using MP.INVE.Data
|
|
@using System.Security.Claims
|
|
@using Microsoft.AspNetCore.Components.Authorization
|
|
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<div class="px-2 py-1">
|
|
@if (userName != "0")
|
|
{
|
|
<div class="input-group text-truncate">
|
|
<button title="LogOut" class="btn btn-sm btn-danger" @onclick="() => LogOut()"><i class="fas fa-sign-out-alt"></i></button>
|
|
<a title="Gestione account @userName" class="form-control btn btn-sm btn-outline-dark mx-0 px-1" disabled>
|
|
<i class="fas fa-user-alt"></i> <b>@userName</b>
|
|
</a>
|
|
</div>
|
|
}
|
|
</div>
|
|
<div class="pe-2">
|
|
<button class="btn btn-primary" @onclick="() => flushCache()" title="Forza Refresh Dati correnti"> Force Reload </button>
|
|
</div>
|
|
</div>
|
|
|
|
|