@page "/web/auth/challenge/{id:guid}" @model DysonNetwork.Sphere.Pages.Auth.ChallengeModel @{ ViewData["Title"] = "Challenge"; }

Authentication Challenge

@if (Model.AuthChallenge == null) {

Challenge not found or expired.

} else {

Remaining steps: @Model.AuthChallenge.StepRemain

@if (Model.AuthChallenge.StepRemain > 0) {
} else {

Challenge completed. Redirecting...

} }
@section Scripts { @{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); } }