2020-05-19 11:55:55 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2020-06-10 22:11:51 +02:00
|
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
|
|
<link href="/favicon.png" rel="icon">
|
2020-06-02 18:59:21 +02:00
|
|
|
<link href="/logo2.svg" rel="icon">
|
2020-05-19 11:55:55 +02:00
|
|
|
<title>JIRS</title>
|
2020-06-10 22:11:51 +02:00
|
|
|
<link href="/styles.css" rel="stylesheet" type="text/css">
|
2020-08-15 00:55:40 +02:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
|
2020-10-18 10:35:41 +02:00
|
|
|
<style>
|
|
|
|
main#app.loading {
|
|
|
|
background: rgb(0, 82, 204);
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spinner {
|
|
|
|
color: #fff;
|
|
|
|
width: 180px;
|
|
|
|
height: 80px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-hourglass {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
|
|
|
margin: 4rem auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-hourglass:after {
|
|
|
|
content: " ";
|
|
|
|
display: block;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
margin: 8px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 32px solid #fff;
|
|
|
|
border-color: #fff transparent #fff transparent;
|
|
|
|
animation: lds-hourglass 1.2s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes lds-hourglass {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0);
|
|
|
|
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: rotate(900deg);
|
|
|
|
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(1800deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
2020-05-19 11:55:55 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-10-18 10:35:41 +02:00
|
|
|
<main class="loading" id="app">
|
|
|
|
<div class="spinner">
|
|
|
|
<div class="lds-hourglass"></div>
|
|
|
|
<div>Loading....</div>
|
|
|
|
<div>Please wait</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
2020-06-10 22:11:51 +02:00
|
|
|
<script src="/index.js" type="module"></script>
|
2020-05-19 11:55:55 +02:00
|
|
|
</body>
|
|
|
|
</html>
|