-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.18 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Content-Security-Policy"
content="script-src 'self' 'unsafe-inline';"
/>
<title>Auto Mechanics</title>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="container">
<div class="logo">
<h2>UB</h2>
</div>
</div>
<!-- <script src="https://unpkg.com/localbase/dist/localbase.min.js"></script> -->
<script src="./renderer.js"></script>
<script src="./.js"></script>
<!-- <script src="./main.js"></script> -->
<script>
(() => {
const initialLaunch = false;
const isInitialLaunch = localStorage.getItem("initialLaunch");
if (isInitialLaunch === null) {
setTimeout(() => {
localStorage.setItem("initialLaunch", !initialLaunch);
window.location.replace("./pages/Home/home.html");
}, 6000);
} else {
window.location.replace("./pages/dashboard/dashboard.html");
}
})();
</script>
</body>
</html>