wisemapping-open-source/wise-ui/index.html

53 lines
2.0 KiB
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
2024-02-04 08:10:32 +01:00
<html>
<head>
2024-02-04 08:10:32 +01:00
<base href="/static/webapp/"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
2021-12-26 18:23:51 +01:00
2024-02-04 08:10:32 +01:00
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;600&display=swap"
as="style" onload="this.onload=null;this.rel='stylesheet'" crossorigin>
<script>
window.serverconfig = {
2022-04-14 00:16:51 +02:00
apiBaseUrl: '${requestScope['site.baseurl']}',
analyticsAccount: '${requestScope['google.analytics.account']}',
clientType: 'rest',
recaptcha2Enabled: ${requestScope['google.recaptcha2.enabled']},
2022-12-13 03:36:58 +01:00
recaptcha2SiteKey: '${requestScope['google.recaptcha2.siteKey']}',
2022-12-18 02:33:59 +01:00
googleOauth2Url: '${requestScope['security.oauth2.google.url']}'
};
2023-11-21 04:19:57 +01:00
<%-- Hack to force view selection on react to move all the UI to react --%>
2023-07-31 07:31:24 +02:00
window.errorMvcView = '${requestScope['exception']!=null?(fn:indexOf(requestScope['exception'],'SecurityException') gt 1?'securityError':'unexpectedError'):''}';
2023-11-21 04:19:57 +01:00
/*
2023-11-21 04:56:28 +01:00
${requestScope['exception']}
2023-11-21 04:19:57 +01:00
*/
2024-02-04 08:10:32 +01:00
</script>
2023-07-31 07:31:24 +02:00
2024-02-04 08:10:32 +01:00
<script type="text/javascript">
2022-09-12 18:46:02 +02:00
function downloadJsAtOnload() {
setTimeout(function downloadJs() {
var element = document.createElement("script");
element.setAttribute("data-ad-client", "ca-pub-4996113942657337");
element.async = true;
element.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js";
document.body.appendChild(element);
2022-11-20 18:28:38 +01:00
}, 50);
2022-09-12 18:46:02 +02:00
};
window.addEventListener("load", downloadJsAtOnload, false);
2024-02-04 08:10:32 +01:00
</script>
</head>
<body>
2024-02-04 08:10:32 +01:00
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
2024-02-04 08:10:32 +01:00
<script type="text/javascript" src="/webapp/vendors.bundle.js" crossorigin="anonymous" async></script>
<script type="text/javascript" src="/webapp/app.bundle.js" crossorigin="anonymous" async></script>
</body>
</html>