b72bbd59f4
Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
149 lines
5 KiB
Text
149 lines
5 KiB
Text
<!doctype html>
|
|
<html lang="${locale}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<base href="${resourceUrl}/">
|
|
<link rel="icon" type="${properties.favIconType!'image/svg+xml'}" href="${resourceUrl}${properties.favIcon!'/favicon.svg'}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="${properties.description!'The {{type}} ui is a web-based management interface.'}">
|
|
<title>${properties.title!'{{type}} Management'}</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
body, #app {
|
|
height: 100%;
|
|
}
|
|
|
|
.container {
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.keycloak__loading-container {
|
|
height: 100vh;
|
|
width: 100%;
|
|
color: #151515;
|
|
background-color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.keycloak__loading-container {
|
|
color: #e0e0e0;
|
|
background-color: #1b1d21;
|
|
}
|
|
}
|
|
|
|
#loading-text {
|
|
z-index: 1000;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
padding-top: 32px;
|
|
}
|
|
</style>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"react": "${resourceCommonUrl}/vendor/react/react.production.min.js",
|
|
"react/jsx-runtime": "${resourceCommonUrl}/vendor/react/react-jsx-runtime.production.min.js",
|
|
"react-dom": "${resourceCommonUrl}/vendor/react-dom/react-dom.production.min.js"
|
|
}
|
|
}
|
|
</script>
|
|
<#if devServerUrl?has_content>
|
|
<script type="module">
|
|
import { injectIntoGlobalHook } from "${devServerUrl}/@react-refresh";
|
|
|
|
injectIntoGlobalHook(window);
|
|
window.$RefreshReg$ = () => {};
|
|
window.$RefreshSig$ = () => (type) => type;
|
|
</script>
|
|
<script type="module">
|
|
import { inject } from "${devServerUrl}/@vite-plugin-checker-runtime";
|
|
|
|
inject({
|
|
overlayConfig: {},
|
|
base: "/",
|
|
});
|
|
</script>
|
|
<script type="module" src="${devServerUrl}/@vite/client"></script>
|
|
<script type="module" src="${devServerUrl}/src/main.tsx"></script>
|
|
</#if>
|
|
<#if entryStyles?has_content>
|
|
<#list entryStyles as style>
|
|
<link rel="stylesheet" href="${resourceUrl}/${style}">
|
|
</#list>
|
|
</#if>
|
|
<#if properties.styles?has_content>
|
|
<#list properties.styles?split(' ') as style>
|
|
<link rel="stylesheet" href="${resourceUrl}/${style}">
|
|
</#list>
|
|
</#if>
|
|
<#if entryScript?has_content>
|
|
<script type="module" src="${resourceUrl}/${entryScript}"></script>
|
|
</#if>
|
|
<#if properties.scripts?has_content>
|
|
<#list properties.scripts?split(' ') as script>
|
|
<script type="module" src="${resourceUrl}/${script}"></script>
|
|
</#list>
|
|
</#if>
|
|
<#if entryImports?has_content>
|
|
<#list entryImports as import>
|
|
<link rel="modulepreload" href="${resourceUrl}/${import}">
|
|
</#list>
|
|
</#if>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<main class="container">
|
|
<div class="keycloak__loading-container">
|
|
<span class="pf-c-spinner pf-m-xl" role="progressbar" aria-valuetext="Loading…">
|
|
<span class="pf-c-spinner__clipper"></span>
|
|
<span class="pf-c-spinner__lead-ball"></span>
|
|
<span class="pf-c-spinner__tail-ball"></span>
|
|
</span>
|
|
<div>
|
|
<p id="loading-text">Loading the Account Console</p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
<noscript>JavaScript is required to use the Account Console.</noscript>
|
|
<script id="environment" type="application/json">
|
|
{
|
|
"serverBaseUrl": "${serverBaseUrl}",
|
|
"authUrl": "${authUrl}",
|
|
"authServerUrl": "${authServerUrl}",
|
|
"realm": "${realm.name}",
|
|
"clientId": "${clientId}",
|
|
"resourceUrl": "${resourceUrl}",
|
|
"logo": "${properties.logo!""}",
|
|
"logoUrl": "${properties.logoUrl!""}",
|
|
"baseUrl": "${baseUrl}",
|
|
"locale": "${locale}",
|
|
"referrerName": "${referrerName!""}",
|
|
"referrerUrl": "${referrer_uri!""}",
|
|
"features": {
|
|
"isRegistrationEmailAsUsername": ${realm.registrationEmailAsUsername?c},
|
|
"isEditUserNameAllowed": ${realm.editUsernameAllowed?c},
|
|
"isInternationalizationEnabled": ${realm.isInternationalizationEnabled()?c},
|
|
"isLinkedAccountsEnabled": ${realm.identityFederationEnabled?c},
|
|
"isMyResourcesEnabled": ${(realm.userManagedAccessAllowed && isAuthorizationEnabled)?c},
|
|
"isViewOrganizationsEnabled": ${isViewOrganizationsEnabled?c},
|
|
"deleteAccountAllowed": ${deleteAccountAllowed?c},
|
|
"updateEmailFeatureEnabled": ${updateEmailFeatureEnabled?c},
|
|
"updateEmailActionEnabled": ${updateEmailActionEnabled?c},
|
|
"isViewGroupsEnabled": ${isViewGroupsEnabled?c},
|
|
"isOid4VciEnabled": ${isOid4VciEnabled?c}
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|