-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (118 loc) · 3.66 KB
/
Copy pathindex.html
File metadata and controls
135 lines (118 loc) · 3.66 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Automatic redirect after 3 seconds -->
<meta http-equiv="refresh" content="3;url=https://ecgage.bioinformatics.mdc-berlin.de/">
<title>Redirecting to ECGage app</title>
<style>
:root {
--primary-blue: #005aa0;
--bg-color: #f4f7f9;
--text-color: #333;
--card-bg: #ffffff;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
text-align: center;
}
.container {
padding: 3rem;
border-radius: 16px;
background: var(--card-bg);
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
max-width: 600px;
width: 90%;
border-top: 6px solid var(--primary-blue);
animation: fadeIn 0.8s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
h1 {
color: var(--primary-blue);
font-size: 2rem;
margin-bottom: 1.5rem;
}
p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.url-box {
display: block;
margin: 2rem 0;
padding: 1rem;
background: #eef4f8;
border: 1px solid #d1dce5;
border-radius: 8px;
text-decoration: none;
color: var(--primary-blue);
font-weight: 600;
font-family: "Courier New", Courier, monospace;
transition: all 0.3s ease;
word-break: break-all;
}
.url-box:hover {
background: #dfe7ed;
border-color: var(--primary-blue);
transform: scale(1.02);
}
.loader-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
margin-top: 2rem;
}
.loader {
border: 4px solid #f3f3f3;
border-top: 4px solid var(--primary-blue);
border-radius: 50%;
width: 35px;
height: 35px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.footer-note {
font-size: 0.9rem;
color: #777;
margin-top: 2rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Page redirection</h1>
<p>You are being redirected automatically to the app of the project.</p>
<a href="https://ecgage.bioinformatics.mdc-berlin.de/" class="url-box">
https://ecgage.bioinformatics.mdc-berlin.de/
</a>
<div class="loader-container">
<div class="loader"></div>
<p style="font-size: 0.9rem; color: #666;">Redirecting in a few seconds...</p>
</div>
<div class="footer-note">
© Bioinformatics MDC Berlin
</div>
</div>
<script>
// Fallback redirect if meta-refresh fails
setTimeout(function() {
window.location.href = "https://ecgage.bioinformatics.mdc-berlin.de/";
}, 3000);
</script>
</body>
</html>