32 lines
1.3 KiB
TypeScript
32 lines
1.3 KiB
TypeScript
import React from "react";
|
|
import type {PageProps} from "keycloakify";
|
|
import type {KcContext} from "../kcContext";
|
|
import type {I18n} from "../i18n";
|
|
|
|
export default function LoginIdpLinkEmail(props: PageProps<Extract<KcContext, { pageId: "login-idp-link-email.ftl" }>, I18n>) {
|
|
const {kcContext, i18n, doFetchDefaultThemeResources = true, Template, ...kcProps} = props;
|
|
|
|
const {url, realm, brokerContext, idpAlias} = kcContext;
|
|
|
|
const {msg} = i18n;
|
|
|
|
return (
|
|
<Template
|
|
{...{kcContext, i18n, doFetchDefaultThemeResources, ...kcProps}}
|
|
headerNode={msg("emailLinkIdpTitle", idpAlias)}
|
|
formNode={
|
|
<>
|
|
<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>
|
|
</>
|
|
}
|
|
/>
|
|
);
|
|
} |