-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·68 lines (68 loc) · 1.9 KB
/
index.html
File metadata and controls
executable file
·68 lines (68 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=/site/">
<link rel="canonical" href="/site/" />
<title>Redirecting to Liberdus</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.redirect-message {
text-align: center;
padding: 3rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
h1 {
margin: 0 0 1rem 0;
font-size: 2rem;
font-weight: 600;
}
p {
margin: 0;
font-size: 1.1rem;
}
a {
color: #fff;
text-decoration: underline;
}
a:hover {
color: #f0f0f0;
}
.spinner {
margin: 2rem auto 0;
width: 40px;
height: 40px;
border: 4px solid rgba(255, 255, 255, 0.3);
border-top-color: white;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="redirect-message">
<h1>Redirecting to Liberdus...</h1>
<p>If you are not redirected automatically, <a href="/site/">click here</a>..</p>
<div class="spinner"></div>
</div>
<script>
// Immediate redirect
window.location.href = "/site/";
</script>
</body>
</html>