39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
@namespace Oqtane.Themes.Controls
|
|
@using System.Net
|
|
@inherits ThemeControlBase
|
|
@inject IStringLocalizer<UserProfile> Localizer
|
|
|
|
@inject NavigationManager NavigationManager
|
|
|
|
<span class="app-profile">
|
|
<AuthorizeView Roles="@RoleNames.Registered">
|
|
<Authorizing>
|
|
<text>...</text>
|
|
</Authorizing>
|
|
<Authorized>
|
|
<a href="@NavigateUrl("profile", "returnurl=" + _returnurl)" class="btn btn-primary">@context.User.Identity.Name</a>
|
|
</Authorized>
|
|
<NotAuthorized>
|
|
@if (ShowRegister && PageState.Site.AllowRegistration)
|
|
{
|
|
<a href="@NavigateUrl("register", "returnurl=" + _returnurl)" class="btn btn-primary">@Localizer["Register"]</a>
|
|
}
|
|
</NotAuthorized>
|
|
</AuthorizeView>
|
|
</span>
|
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
public bool ShowRegister { get; set; }
|
|
|
|
private string _returnurl = "";
|
|
|
|
protected override void OnParametersSet()
|
|
{
|
|
_returnurl = WebUtility.UrlEncode(PageState.Route.PathAndQuery);
|
|
}
|
|
}
|
|
|
|
|