-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
32 lines (30 loc) · 1.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Mendix</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
{{themecss}}
{{appicons}}
{{manifest}}
{{startupimages}}
</head>
<body dir="ltr">
<noscript>To use this application, please enable JavaScript.</noscript>
<div id="content"></div>
<script>
dojoConfig = {
baseUrl: "mxclientsystem/dojo/",
cacheBust: "{{cachebust}}",
rtlRedirect: "index-rtl.html"
};
</script>
<script>
if (!document.cookie || !document.cookie.match(/(^|;)originURI=/gi))
document.cookie = "originURI=/login.html" + (window.location.protocol === "https:" ? ";SameSite=None;Secure" : "");
</script>
<script src="mxclientsystem/mxui/mxui.js?{{cachebust}}"></script>
</body>
</html>