blob: 25de7d3cd3cb9ee1cf9dc633366b05fe91795030 (
plain) (
blame)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="apple-touch-icon"
sizes="180x180"
href="./_assets/pwa/apple-touch-icon.png">
<link rel="icon"
type="image/png"
sizes="32x32"
href="./_assets/pwa/favicon-32x32.png">
<link rel="icon"
type="image/png"
sizes="16x16"
href="./_assets/pwa/favicon-16x16.png">
<link rel="manifest"
href="./_assets/pwa/manifest.json">
<link rel="mask-icon"
href="./_assets/pwa/safari-pinned-tab.svg"
color="#5bbad5">
<meta name="msapplication-TileColor"
content="#da532c">
<link rel="icon"
href="./_assets/pwa/favicon.svg">
<script>
const value = `; ${document.cookie}`;
const parts = value.split(`; go_theme=`);
let currentTheme = "system";
if (parts.length === 2) {
currentTheme = parts.pop().split(";").shift();
}
if (currentTheme === "light") {
document.querySelector("html").dataset.theme = "light";
} else if (currentTheme === "dark") {
document.querySelector("html").dataset.theme = "dark";
} else {
document.querySelector("html").dataset.theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
}
</script>
<link rel="stylesheet"
href="./_assets/pre.css">
<title>Portal - Greatoffice</title>
</head>
<body>
<noscript>
This page is built with javascript. Allow it and try again.
</noscript>
<div class="fill-loader fill-loader--v4"
id="loader"
role="alert">
<p class="fill-loader__label">Loading Portal...</p>
<div aria-hidden="true">
<div class="fill-loader__base"></div>
<div class="fill-loader__fill"></div>
</div>
</div>
<div id="root"></div>
<script type="module"
src="./app/index.ts"></script>
</body>
</html>
|