RobotNet/RobotNet.WebApp/Pages/Authentication.razor
2025-10-15 15:15:53 +07:00

8 lines
209 B
Plaintext

@page "/authentication/{action}"
@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
<RemoteAuthenticatorView Action="@Action" />
@code{
[Parameter] public string? Action { get; set; }
}