-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
47 lines (42 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Index</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="../css/Login.css">
<script type="text/javascript">
window.onload = function() {
sessionStorage.setItem("userkey", "user");
sessionStorage.setItem("adminKey", "admin");
sessionStorage.setItem("organizerKey", "org");
window.location.href = "/html/Login.html";
}
</script>
</head>
<body>
<h2>
<marquee>This is Index</marquee>
</h2>
<div style="font-size: 50px;text-align: center; margin-top:400px;">
<h1 style="align-content: center"><b>ITP_DialogEventManager_WebApp</b></h1>
</div>
<script type="text/javascript">
$(document).ready(function() {
//Preloader
$(window).on("load", function() {
preloaderFadeOutTime = 1000;
function hidePreloader() {
var preloader = $('.spinner-wrapper');
preloader.fadeOut(preloaderFadeOutTime);
}
hidePreloader();
});
});
</script>
</body>
<!--CSS Spinner-->
<div class="spinner-wrapper">
<div class="spinner"></div>
</div>
</html>