17 lines
570 B
Plaintext
17 lines
570 B
Plaintext
@page "//auth/challenge/{id:guid}"
|
|
@model DysonNetwork.Sphere.Pages.Auth.ChallengeModel
|
|
@{
|
|
// This page is kept for backward compatibility
|
|
// It will automatically redirect to the new SelectFactor page
|
|
Response.Redirect($"//auth/challenge/{Model.Id}/select-factor");
|
|
}
|
|
|
|
<div class="hero min-h-full bg-base-200">
|
|
<div class="hero-content text-center">
|
|
<div class="max-w-md">
|
|
<span class="loading loading-spinner loading-lg"></span>
|
|
<p class="py-6">Redirecting to authentication page...</p>
|
|
</div>
|
|
</div>
|
|
</div>
|