feat(storybook): progress on many more pages
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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>
|
||||
</>
|
||||
}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user