23 lines
431 B
Plaintext
23 lines
431 B
Plaintext
@page "/authentication/{action}"
|
|
@inherits PagesBase
|
|
|
|
|
|
<section class="block relative w-full h-full neomorphInset is-nxsmall rounded-xl">
|
|
|
|
<div class="flex flex-col space-y-4 p-4 md:p-5 w-full h-full absolute overflow-y-auto">
|
|
|
|
<RemoteAuthenticatorView Action="@Action" />
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string Action { get; set; }
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
}
|
|
} |