Compare commits
2 commits
060fdfeda6
...
4f1b8d053a
Author | SHA1 | Date | |
---|---|---|---|
4f1b8d053a | |||
2c624712cc |
|
@ -6,6 +6,7 @@ import { usePrepareTemplate } from "keycloakify/lib/usePrepareTemplate";
|
|||
import { type TemplateProps } from "keycloakify/login/TemplateProps";
|
||||
import type { KcContext } from "./kcContext";
|
||||
import type { I18n } from "./i18n";
|
||||
import "../resources/styles/scss/background.scss";
|
||||
|
||||
export default function Template(props: TemplateProps<KcContext, I18n>) {
|
||||
const {
|
||||
|
@ -46,8 +47,10 @@ export default function Template(props: TemplateProps<KcContext, I18n>) {
|
|||
return null;
|
||||
}
|
||||
|
||||
return (<>
|
||||
return (
|
||||
<div className="ps-background">
|
||||
<header className="ps-header">
|
||||
lorem ipsum - 27.04.2024
|
||||
{realm.internationalizationEnabled && (assert(locale !== undefined), true) && locale.supported.length > 1 && (
|
||||
<div id="kc-locale">
|
||||
<div id="kc-locale-wrapper" className="ps-locale-dropdown">
|
||||
|
@ -173,6 +176,6 @@ export default function Template(props: TemplateProps<KcContext, I18n>) {
|
|||
)}
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
flex-wrap: wrap;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
speak: none;
|
||||
|
||||
&--logo {
|
||||
width: 100px;
|
||||
|
|
Loading…
Reference in a new issue