-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.25 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary meta -->
<title>Prism</title>
<meta name="description" content="Sign in to your account" />
<meta name="application-name" content="Prism" />
<meta name="theme-color" content="#0078d4" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Prism" />
<meta property="og:description" content="Sign in to your account" />
<meta property="og:image" content="/ic_fluent_lock_shield_48_color.svg" />
<!-- Favicon -->
<link
rel="icon"
type="image/svg+xml"
href="/ic_fluent_lock_shield_48_color.svg"
/>
<!-- Prevent flash of unstyled content for dark-mode users -->
<script>
(function () {
var s = localStorage.getItem("prism-theme");
if (
s === "dark" ||
(!s && window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.setAttribute("data-theme", "dark");
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>