26 lines
1.2 KiB
TypeScript
26 lines
1.2 KiB
TypeScript
import type { PageProps } from "keycloakify/login/pages/PageProps";
|
|
import type { KcContext } from "../KcContext";
|
|
import { useI18n } from "../i18n";
|
|
|
|
export default function LoginIdpLinkEmail(props: PageProps<Extract<KcContext, { pageId: "login-idp-link-email.ftl" }>>) {
|
|
const { kcContext, doUseDefaultCss, Template, classes } = props;
|
|
|
|
const { url, realm, brokerContext, idpAlias } = kcContext;
|
|
|
|
const { msg } = useI18n({ kcContext });
|
|
|
|
return (
|
|
<Template kcContext={kcContext} doUseDefaultCss={doUseDefaultCss} classes={classes} headerNode={msg("emailLinkIdpTitle", idpAlias)}>
|
|
<p id="instruction1" className="instruction">
|
|
{msg("emailLinkIdp1", idpAlias, brokerContext.username, realm.displayName)}
|
|
</p>
|
|
<p id="instruction2" className="instruction">
|
|
{msg("emailLinkIdp2")} <a href={url.loginAction}>{msg("doClickHere")}</a> {msg("emailLinkIdp3")}
|
|
</p>
|
|
<p id="instruction3" className="instruction">
|
|
{msg("emailLinkIdp4")} <a href={url.loginAction}>{msg("doClickHere")}</a> {msg("emailLinkIdp5")}
|
|
</p>
|
|
</Template>
|
|
);
|
|
}
|