-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path302.html
51 lines (51 loc) · 1.47 KB
/
302.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
48
49
50
51
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jellyfin - Temporary Maintenance</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f4f8;
color: #333;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
padding: 20px;
box-sizing: border-box;
}
.container {
text-align: center;
background-color: #ffffff;
padding: 25px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border-radius: 12px;
max-width: 500px;
width: 100%;
}
h1 {
color: #005a87;
margin-bottom: 15px;
}
p {
margin-bottom: 20px;
line-height: 1.6;
}
.timestamp {
font-size: 0.85em;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<h1>Sorry, we'll be back in a few hours</h1>
<p>Our Jellyfin server is currently offline for essential backups.</p>
<p>We expect to be back online shortly (within a few hours).</p>
<p class="timestamp">Apologies for the brief inconvenience. Message me on Messenger if needed.</p>
</div>
</body>
</html>