14 lines
327 B
Plaintext
14 lines
327 B
Plaintext
@page "/authentication/{action}"
|
|
|
|
<main class="rules-shell">
|
|
<section class="panel panel-wide cta-panel" style="margin-top: 2rem;">
|
|
<p class="eyebrow">Authentification</p>
|
|
<RemoteAuthenticatorView Action="@Action" />
|
|
</section>
|
|
</main>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string? Action { get; set; }
|
|
}
|