32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import React from "react";
|
|
import type { PageProps } from "keycloakify";
|
|
import type { KcContext } from "../kcContext";
|
|
import type { I18n } from "../i18n";
|
|
|
|
export default function LoginVerifyEmail(props: PageProps<Extract<KcContext, { pageId: "login-verify-email.ftl" }>, I18n>) {
|
|
const { kcContext, i18n, doFetchDefaultThemeResources = true, Template, ...kcProps } = props;
|
|
|
|
const { msg } = i18n;
|
|
|
|
const { url, user } = kcContext;
|
|
|
|
return (
|
|
<Template
|
|
{...{ kcContext, i18n, doFetchDefaultThemeResources, ...kcProps }}
|
|
displayMessage={false}
|
|
headerNode={msg("emailVerifyTitle")}
|
|
formNode={
|
|
<>
|
|
<p className="instruction">{msg("emailVerifyInstruction1", user?.email)}</p>
|
|
<p className="instruction">
|
|
{msg("emailVerifyInstruction2")}
|
|
<br />
|
|
<a href={url.loginAction}>{msg("doClickHere")}</a>
|
|
|
|
{msg("emailVerifyInstruction3")}
|
|
</p>
|
|
</>
|
|
}
|
|
/>
|
|
);
|
|
}
|