73 lines
3.1 KiB
TypeScript
73 lines
3.1 KiB
TypeScript
import { useState } from "react";
|
|
import { clsx } from "keycloakify/tools/clsx";
|
|
import { UserProfileFormFields } from "./shared/UserProfileFormFields";
|
|
import type { PageProps } from "keycloakify/login/pages/PageProps";
|
|
import { useGetClassName } from "keycloakify/login/lib/useGetClassName";
|
|
import type { KcContext } from "../kcContext";
|
|
import type { I18n } from "../i18n";
|
|
|
|
export default function RegisterUserProfile(props: PageProps<Extract<KcContext, { pageId: "register-user-profile.ftl" }>, I18n>) {
|
|
const { kcContext, i18n, doUseDefaultCss, Template, classes } = props;
|
|
|
|
const { getClassName } = useGetClassName({
|
|
doUseDefaultCss,
|
|
classes
|
|
});
|
|
|
|
const { url, messagesPerField, recaptchaRequired, recaptchaSiteKey, realm } = kcContext;
|
|
|
|
realm.registrationEmailAsUsername;
|
|
|
|
const { msg, msgStr } = i18n;
|
|
|
|
const [isFormSubmittable, setIsFormSubmittable] = useState(false);
|
|
|
|
return (
|
|
<Template
|
|
{...{ kcContext, i18n, doUseDefaultCss, classes }}
|
|
displayMessage={messagesPerField.exists("global")}
|
|
displayRequiredFields={true}
|
|
headerNode={msg("registerTitle")}
|
|
>
|
|
<form id="kc-register-form" className={getClassName("kcFormClass")} action={url.registrationAction} method="post">
|
|
<UserProfileFormFields
|
|
kcContext={kcContext}
|
|
onIsFormSubmittableValueChange={setIsFormSubmittable}
|
|
i18n={i18n}
|
|
getClassName={getClassName}
|
|
/>
|
|
{recaptchaRequired && (
|
|
<div className="form-group">
|
|
<div className={getClassName("kcInputWrapperClass")}>
|
|
<div className="g-recaptcha" data-size="compact" data-sitekey={recaptchaSiteKey} />
|
|
</div>
|
|
</div>
|
|
)}
|
|
<div className={getClassName("kcFormGroupClass")} style={{ "marginBottom": 30 }}>
|
|
<div id="kc-form-options" className={getClassName("kcFormOptionsClass")}>
|
|
<div className={getClassName("kcFormOptionsWrapperClass")}>
|
|
<span>
|
|
<a href={url.loginUrl}>{msg("backToLogin")}</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="kc-form-buttons" className={getClassName("kcFormButtonsClass")}>
|
|
<input
|
|
className={clsx(
|
|
getClassName("kcButtonClass"),
|
|
getClassName("kcButtonPrimaryClass"),
|
|
getClassName("kcButtonBlockClass"),
|
|
getClassName("kcButtonLargeClass")
|
|
)}
|
|
type="submit"
|
|
value={msgStr("doRegister")}
|
|
disabled={!isFormSubmittable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</Template>
|
|
);
|
|
}
|