2021-12-25 03:03:23 +01:00
|
|
|
<%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<base href="${requestScope['site.baseurl']}/static/webapp/">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;600&display=swap" rel="stylesheet" />
|
|
|
|
|
2022-01-11 04:12:58 +01:00
|
|
|
<%@ include file="/jsp/pageHeaders.jsf" %>
|
2021-12-26 18:23:51 +01:00
|
|
|
|
2021-12-25 03:03:23 +01:00
|
|
|
<title>Loading | WiseMapping</title>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
window.serverconfig = {
|
|
|
|
apiBaseUrl: '',
|
|
|
|
analyticsAccount: '${requestScope['google.analytics.account']}',
|
|
|
|
clientType: 'rest',
|
|
|
|
recaptcha2Enabled: ${requestScope['google.recaptcha2.enabled']},
|
|
|
|
recaptcha2SiteKey: '${requestScope['google.recaptcha2.siteKey']}'
|
|
|
|
};
|
|
|
|
|
|
|
|
</script>
|
2022-01-12 04:01:36 +01:00
|
|
|
<%@ include file="/jsp/googleAnalytics.jsf" %>
|
2021-12-25 03:03:23 +01:00
|
|
|
|
|
|
|
<c:if test="${requestScope['google.analytics.enabled']}">
|
2022-01-12 04:01:36 +01:00
|
|
|
<!-- Google Ads Sense Config-->
|
2022-01-12 03:18:55 +01:00
|
|
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4996113942657337" crossorigin="anonymous"></script>
|
2021-12-25 03:03:23 +01:00
|
|
|
</c:if>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
|
|
<div id="root"></div>
|
|
|
|
<script src="vendors.bundle.js"></script>
|
|
|
|
<script src="app.bundle.js"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|