-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex_redirect.html
More file actions
83 lines (83 loc) · 2.58 KB
/
Copy pathindex_redirect.html
File metadata and controls
83 lines (83 loc) · 2.58 KB
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
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<title>Redirecting to new dashboard...</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #f8f9fa;
color: #333;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0 20px;
text-align: center;
}
.container {
max-width: 600px;
padding: 2rem;
background-color: white;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
margin-top: 0;
color: #2C4B7C;
}
p {
line-height: 1.6;
margin-bottom: 1.5rem;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: #109b81;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 1rem auto;
}
.btn {
display: inline-block;
background-color: #109b81;
color: white;
text-decoration: none;
padding: 0.75rem 1.5rem;
border-radius: 6px;
font-weight: 600;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #097362;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
<script>
// Redirect after a brief delay to allow reading the message
window.onload = function() {
setTimeout(function() {
window.location.href = 'dashboard.html';
}, 2000); // 2 second delay
}
</script>
</head>
<body>
<div class="container">
<h1>Awesome-Virome Dashboard Update</h1>
<p>We've updated the dashboard with improved performance and visualization features.</p>
<div class="spinner"></div>
<p>Redirecting you to the new dashboard...</p>
<a href="dashboard.html" class="btn">Go to Dashboard Now</a>
</div>
</body>
</html>