"use client"; import { AuthenticationMethodType, LoginSettings, login, } from "@zitadel/server"; import Link from "next/link"; import { BadgeState, StateBadge } from "./StateBadge"; import clsx from "clsx"; import { CheckIcon } from "@heroicons/react/24/outline"; import { EMAIL, SMS, TOTP, U2F } from "./AuthMethods"; type Props = { loginName?: string; sessionId?: string; authRequestId?: string; organization?: string; userMethods: AuthenticationMethodType[]; }; export default function ChooseSecondFactor({ loginName, sessionId, authRequestId, organization, userMethods, }: Props) { const params = new URLSearchParams({}); if (loginName) { params.append("loginName", loginName); } if (sessionId) { params.append("sessionId", sessionId); } if (authRequestId) { params.append("authRequestId", authRequestId); } if (organization) { params.append("organization", organization); } return (
{userMethods.map((method, i) => { return (
{method === 4 && TOTP(false, "")} {method === 2 && U2F(false, "")} {method === 3 && EMAIL(false, "")} {method === 4 && SMS(false, "")}
); })}
); } function Setup() { return (
); }