2023-02-25 18:11:23 +01:00
|
|
|
import React from "react";
|
2023-02-25 19:19:46 +01:00
|
|
|
import type { KcContextBase } from "../getKcContext";
|
2023-02-25 18:26:39 +01:00
|
|
|
import type { PageProps } from "../KcProps";
|
2023-02-25 18:11:23 +01:00
|
|
|
import type { I18nBase } from "../i18n";
|
2022-04-22 17:54:47 +03:00
|
|
|
|
2023-02-25 18:11:23 +01:00
|
|
|
export default function LoginIdpLinkEmail(props: PageProps<KcContextBase.LoginIdpLinkEmail, I18nBase>) {
|
|
|
|
const { kcContext, i18n, doFetchDefaultThemeResources = true, Template, ...kcProps } = props;
|
2022-04-22 17:54:47 +03:00
|
|
|
|
2022-10-13 11:58:31 +02:00
|
|
|
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>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
);
|
2023-02-25 18:11:23 +01:00
|
|
|
}
|