35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import type { PageProps } from "keycloakify/login/pages/PageProps";
|
|
import { kcSanitize } from "keycloakify/lib/kcSanitize";
|
|
import type { KcContext } from "../KcContext";
|
|
import type { I18n } from "../i18n";
|
|
|
|
export default function Error(props: PageProps<Extract<KcContext, { pageId: "error.ftl" }>, I18n>) {
|
|
const { kcContext, i18n, doUseDefaultCss, Template, classes } = props;
|
|
|
|
const { message, client, skipLink } = kcContext;
|
|
|
|
const { msg } = i18n;
|
|
|
|
return (
|
|
<Template
|
|
kcContext={kcContext}
|
|
i18n={i18n}
|
|
doUseDefaultCss={doUseDefaultCss}
|
|
classes={classes}
|
|
displayMessage={false}
|
|
headerNode={msg("errorTitle")}
|
|
>
|
|
<div id="kc-error-message">
|
|
<p className="instruction" dangerouslySetInnerHTML={{ __html: kcSanitize(message.summary) }} />
|
|
{!skipLink && client !== undefined && client.baseUrl !== undefined && (
|
|
<p>
|
|
<a id="backToApplication" href={client.baseUrl}>
|
|
{msg("backToApplication")}
|
|
</a>
|
|
</p>
|
|
)}
|
|
</div>
|
|
</Template>
|
|
);
|
|
}
|