import { Button, PinInput, Select } from "@wrnexus/ui" component TwoFactorChallenge { props { action = "/api/auth/mfa/complete" schema = "auth-mfa" otpAction = "/api/auth/mfa/otp" mfaToken = "" challengeId = "" method = "totp" returnTo = "/" title = "Two-step verification" description = "Choose a verification method and enter the code." submitLabel = "Verify" recoveryHref = "/recover" color = "primary" size = "md" class = "" } state methodOptions = [ {"label":"Authenticator app","value":"totp"}, {"label":"Recovery code","value":"recovery-code"}, {"label":"Email code","value":"email-otp"}, {"label":"SMS code","value":"sms-otp"} ] view {

{title}

{description}