This repository has been archived by the owner on Sep 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<link href="https://fonts.googleapis.com/css?family=Arimo" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link rel="stylesheet" type="text/css" href="/static/style.css">
<link rel="shortcut icon" href="/static/favicon.ico">
<title>Rentlify - Revolutionize your life</title>
</head>
<body>
<div class="spinner-wrapper">
<div class="content-wrapper">
<div class="reverse-spinner"></div>
<h1>Building your future...</h1>
</div>
</div>
<div id="app"></div>
<!-- built files will be auto injected -->
<script>
document.addEventListener("DOMContentLoaded", () => {
const spinner = document.getElementsByClassName("spinner-wrapper")[0]
setInterval(() => {
spinner.style.opacity = 0;
setInterval(() => {
spinner.style.display = 'none'
}, 2000)
}, 500)
}, false)
</script>
</body>
</html>