UserAuthCardProps: {
    additionalProps: LoginSectionAdditionalProps | RegistrationSectionAdditionalProps | RecoverySectionAdditionalProps | VerificationSectionAdditionalProps;
    cardImage?: string | React.ReactElement;
    children?: string;
    className?: string;
    flow: SelfServiceFlow;
    flowType: "login" | "registration" | "recovery" | "verification";
    includeScripts?: boolean;
    subtitle?: string;
    title: string;
} & UserAuthFormAdditionalProps

Property

can be any of the login, registration, verification, recovery flows

Property

title of the user auth card

Property

specify the type of flow to render

Property

subtitle of the user auth card, usually used to display additional information

Property

an image to display on the card header (usually a logo)

Property

additional props to pass to the form

Generated using TypeDoc