import { useState } from "react"; import type { LazyOrNot } from "keycloakify/tools/LazyOrNot"; import { getKcClsx } from "keycloakify/login/lib/kcClsx"; import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFields"; import type { PageProps } from "keycloakify/login/pages/PageProps"; import type { KcContext } from "../KcContext"; import { useI18n } from "../i18n"; type LoginUpdateProfileProps = PageProps> & { UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; doMakeUserConfirmPassword: boolean; }; export default function LoginUpdateProfile(props: LoginUpdateProfileProps) { const { kcContext, doUseDefaultCss, Template, classes, UserProfileFormFields, doMakeUserConfirmPassword } = props; const { kcClsx } = getKcClsx({ doUseDefaultCss, classes }); const { url, isAppInitiatedAction } = kcContext; const { msg, msgStr } = useI18n({ kcContext }); const [isFormSubmittable, setIsFormSubmittable] = useState(false); return ( ); }