generated from RanitManik/Frontend-App-Starter-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (70 loc) · 2.43 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Fire Sign is a React-based authenticator app offering secure and easy sign-up and sign-in options, both traditionally and with support for many OAuth providers."
/>
<meta
name="keywords"
content="Fire Sign, React, authenticator app, secure sign-up, sign-in, OAuth"
/>
<meta name="author" content="Ranit Manik" />
<meta property="og:title" content="Fire Sign" />
<meta
property="og:description"
content="Fire Sign is a React-based authenticator app offering secure and easy sign-up and sign-in options, both traditionally and with support for many OAuth providers."
/>
<meta property="og:url" content="https://firesign.ranitmanik.live" />
<meta property="og:type" content="website" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>Fire Sign</title>
<style>
.loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100svh;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.loader-circle {
border: 4px solid rgba(0, 0, 0, 0.2);
border-left: 4px solid #000;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.hidden {
display: none;
}
</style>
</head>
<body>
<div id="root"></div>
<div class="loader">
<div class="loader-circle"></div>
</div>
<script type="module" src="./src/main.jsx"></script>
<script>
window.addEventListener("load", () => {
document.querySelector(".loader").classList.add("hidden");
});
</script>
</body>
</html>