forked from getfider/fider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.html
More file actions
executable file
·91 lines (57 loc) · 3.15 KB
/
basic.html
File metadata and controls
executable file
·91 lines (57 loc) · 3.15 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en" dir="ltr" data-theme="light">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="https://demo.test.fider.io:3000/static/favicon?size=64" sizes="64x64" type="image/png">
<link rel="icon" href="https://demo.test.fider.io:3000/static/favicon?size=192" sizes="192x192" type="image/png">
<link rel="apple-touch-icon" href="https://demo.test.fider.io:3000/static/favicon?size=180&bg=white" sizes="180x180" type="image/png">
<link rel="stylesheet" href="https://demo.test.fider.io:3000/assets/css/file1.css" />
<link rel="preload" href="https://demo.test.fider.io:3000/assets/locale-en.js" as="script" />
<title>Fider</title>
<meta name="description" content="" />
<meta property="og:title" content="Fider" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://demo.test.fider.io:3000/" />
<meta property="og:image" content="https://login.fider.io/static/assets/logo.png">
</head>
<body>
<noscript class="container page">
<div class="mt-8">
<h2 class="text-display2">Please enable JavaScript</h2>
<p>This website requires JavaScript, please enable and reload the page.</p>
</div>
</noscript>
<div id="root"></div><div id="root-modal"></div><div id="root-toastify"></div>
<script id="server-data" type="application/json">
{"contextID":"CONTEXT_ID","page":"","props":{},"sessionID":"","settings":{"allowAllowedSchemes":true,"assetsURL":"https://demo.test.fider.io:3000","baseURL":"https://demo.test.fider.io:3000","domain":".test.fider.io","environment":"test","googleAnalytics":"","hasLegal":true,"isBillingEnabled":false,"locale":"en","localeDirection":"ltr","mode":"multi","oauth":[],"postWithTags":true,"version":"dev"},"tenant":null,"title":"Fider"}
</script>
<script type="text/javascript" nonce="CONTEXT_ID">
;(function () {
try {
if (typeof window !== 'undefined' && window.localStorage) {
const params = new URLSearchParams(window.location.search)
let theme = "light"
if ((params.has("theme") && params.get("theme") === "light") || params.get("theme") === "dark") {
theme = params.get("theme")
localStorage.setItem("theme", theme)
params.delete("theme")
const newUrl = `${window.location.pathname}?${params.toString()}`
window.history.replaceState({}, "", newUrl)
} else {
theme = localStorage.getItem("theme") || "light"
}
if (theme == "light" || theme == "dark") {
document.body.setAttribute("data-theme", theme)
}
}
} catch (e) {
document.body.setAttribute("data-theme", "light")
}
})()
</script>
<script src="https://demo.test.fider.io:3000/assets/js/file1.js" crossorigin="anonymous"></script>
<script src="https://demo.test.fider.io:3000/assets/js/file2.js" crossorigin="anonymous"></script>
</body>
</html>