-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmaintenance.html
More file actions
51 lines (51 loc) · 1.16 KB
/
Copy pathmaintenance.html
File metadata and controls
51 lines (51 loc) · 1.16 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
<!DOCTYPE html>
<!-- Maintenance page, to put on cPanel's mgmt.esnpolimi.it folder, and to toggle via Cloudflare's Page Rules -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Maintenance Mode</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: Arial, sans-serif;
background: #f5f7fa;
color: #333;
}
.container {
text-align: center;
max-width: 500px;
padding: 20px;
}
h1 {
font-size: 2rem;
margin-bottom: 10px;
color: #2c3e50;
}
p {
font-size: 1.1rem;
margin-bottom: 20px;
}
@keyframes spin {
100% { transform: rotate(360deg); }
}
footer {
margin-top: 30px;
font-size: 0.9rem;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<h1>We'll be back soon!</h1>
<p>Our system is currently under maintenance.<br>
Please check back shortly.</p>
<footer>Erasmus Student Network Politectnico Milano</footer>
</div>
</body>
</html>