mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
@using Remotely.Server.Components
|
|
@using Remotely.Server.Auth
|
|
@inherits LayoutComponentBase
|
|
@inject NavigationManager NavMan
|
|
|
|
<AuthorizeView Policy="@PolicyNames.TwoFactorRequired">
|
|
<Authorized>
|
|
<div class="page">
|
|
<div class="sidebar">
|
|
<NavMenu />
|
|
</div>
|
|
|
|
<div class="main">
|
|
<div class="content px-4">
|
|
@Body
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Authorized>
|
|
<NotAuthorized>
|
|
<div class="container mt-5">
|
|
<h3>Two-Factor Authentication Required</h3>
|
|
|
|
<hr />
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<p>Two-factor authentication is required. Click the button below to set up your authenticator app.</p>
|
|
<p>
|
|
<button class="btn btn-primary" @onclick="NavigateToTwoFactor">Enable 2FA</button>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</NotAuthorized>
|
|
</AuthorizeView>
|
|
|
|
<div id="blazor-error-ui">
|
|
An unhandled error has occurred.
|
|
<a href="" class="reload">Reload</a>
|
|
<a class="dismiss">🗙</a>
|
|
</div>
|
|
|
|
<ToastHarness />
|
|
<LoaderHarness />
|
|
<ModalHarness />
|
|
|
|
@code {
|
|
private void NavigateToTwoFactor()
|
|
{
|
|
NavMan.NavigateTo("/Account/Manage/TwoFactorAuthentication", true);
|
|
}
|
|
} |