36 lines
1.3 KiB
TypeScript
36 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 LoginPageExpired(props: PageProps<Extract<KcContext, { pageId: "login-page-expired.ftl" }>, I18n>) {
|
||
|
|
const { kcContext, i18n, doFetchDefaultThemeResources = true, Template, ...kcProps } = props;
|
||
|
|
|
||
|
|
const { url } = kcContext;
|
||
|
|
|
||
|
|
const { msg } = i18n;
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Template
|
||
|
|
{...{ kcContext, i18n, doFetchDefaultThemeResources, ...kcProps }}
|
||
|
|
displayMessage={false}
|
||
|
|
headerNode={msg("pageExpiredTitle")}
|
||
|
|
formNode={
|
||
|
|
<>
|
||
|
|
<p id="instruction1" className="instruction">
|
||
|
|
{msg("pageExpiredMsg1")}
|
||
|
|
<a id="loginRestartLink" href={url.loginRestartFlowUrl}>
|
||
|
|
{msg("doClickHere")}
|
||
|
|
</a>{" "}
|
||
|
|
.<br />
|
||
|
|
{msg("pageExpiredMsg2")}{" "}
|
||
|
|
<a id="loginContinueLink" href={url.loginAction}>
|
||
|
|
{msg("doClickHere")}
|
||
|
|
</a>{" "}
|
||
|
|
.
|
||
|
|
</p>
|
||
|
|
</>
|
||
|
|
}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|