38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
@namespace Oqtane.Themes.Controls
|
|
@inherits LoginBase
|
|
@inject IStringLocalizer<Login> Localizer
|
|
@inject IStringLocalizer<SharedResources> SharedLocalizer
|
|
|
|
<span class="app-login">
|
|
<AuthorizeView Roles="@RoleNames.Registered">
|
|
<Authorizing>
|
|
<text>...</text>
|
|
</Authorizing>
|
|
<Authorized>
|
|
@if (PageState.Runtime == Runtime.Hybrid)
|
|
{
|
|
<button type="button" class="btn btn-primary" @onclick="LogoutUser">@Localizer["Logout"]</button>
|
|
}
|
|
else
|
|
{
|
|
<form method="post" class="app-form-inline" action="@logouturl" @formname="LogoutForm">
|
|
<input type="hidden" name="__RequestVerificationToken" value="@SiteState.AntiForgeryToken" />
|
|
<input type="hidden" name="returnurl" value="@returnurl" />
|
|
<button type="submit" class="btn btn-primary">@Localizer["Logout"]</button>
|
|
</form>
|
|
}
|
|
</Authorized>
|
|
<NotAuthorized>
|
|
@if (ShowLogin)
|
|
{
|
|
<a href="@loginurl" class="btn btn-primary">@SharedLocalizer["Login"]</a>
|
|
}
|
|
</NotAuthorized>
|
|
</AuthorizeView>
|
|
</span>
|
|
|
|
@code
|
|
{
|
|
[Parameter]
|
|
public bool ShowLogin { get; set; } = true;
|
|
} |