25 lines
735 B
Plaintext
25 lines
735 B
Plaintext
@inject NavigationManager Navigation
|
|
|
|
<AuthorizeView>
|
|
<Authorized>
|
|
<MudMenu Label="@context.User.Identity?.Name" Variant="Variant.Text" Color="Color.Inherit" Class="user-menu">
|
|
<MudMenuItem OnClick="GoToProfile">Профиль</MudMenuItem>
|
|
<MudMenuItem OnClick="BeginLogOut">Выйти</MudMenuItem>
|
|
</MudMenu>
|
|
</Authorized>
|
|
<NotAuthorized>
|
|
<MudLink Href="/login" Color="Color.Inherit" Underline="Underline.Hover" Typo="Typo.body2">Вход</MudLink>
|
|
</NotAuthorized>
|
|
</AuthorizeView>
|
|
|
|
@code {
|
|
private void GoToProfile()
|
|
{
|
|
Navigation.NavigateTo("/profile");
|
|
}
|
|
|
|
private void BeginLogOut()
|
|
{
|
|
Navigation.NavigateTo("/logout");
|
|
}
|
|
} |