36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import { type PageProps } from "keycloakify/pages/PageProps";
|
|
import type { KcContextBase as KcContext } from "../kcContext";
|
|
import type { I18nBase as I18n } from "../i18n";
|
|
|
|
export default function LoginPageExpired(props: PageProps<Extract<KcContext, { pageId: "login-page-expired.ftl" }>, I18n>) {
|
|
const { kcContext, i18n, doUseDefaultCss, Template, classes } = props;
|
|
|
|
const { url } = kcContext;
|
|
|
|
const { msg } = i18n;
|
|
|
|
return (
|
|
<Template
|
|
{...{ kcContext, i18n, doUseDefaultCss, classes }}
|
|
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>
|
|
</>
|
|
}
|
|
/>
|
|
);
|
|
}
|