Files
PlaylistShared/PlaylistShared.PWA2123/Pages/LoginDisplay.razor
2026-04-13 14:16:44 +03:00

11 lines
502 B
Plaintext

@inject NavigationManager Navigation
<AuthorizeView>
<Authorized>
<MudText Typo="Typo.body2" Class="d-inline mr-2">Hello, @context.User.Identity?.Name!</MudText>
<MudButton Variant="Variant.Text" Color="Color.Inherit" OnClick="() => Navigation.NavigateTo("/logout")">Log out</MudButton>
</Authorized>
<NotAuthorized>
<MudLink Href="/login" Color="Color.Inherit" Underline="Underline.Hover" Typo="Typo.body2">Log in</MudLink>
</NotAuthorized>
</AuthorizeView>