forked from Jexactyl/Jexactyl
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make it so that it has an awesome (not boring) 503 screen
- Loading branch information
1 parent
ac5bd71
commit cb2f5c6
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Service Unavailable</title> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"> | ||
<style> | ||
body { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
background-color: #f0f0f0; | ||
font-family: 'Roboto', sans-serif; | ||
margin: 0; | ||
} | ||
.container { | ||
background-color: white; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); | ||
padding: 20px; | ||
text-align: center; | ||
max-width: 400px; | ||
} | ||
h1 { | ||
font-size: 24px; | ||
margin-bottom: 10px; | ||
} | ||
p { | ||
font-size: 16px; | ||
color: #555; | ||
} | ||
img { | ||
width: 100%; | ||
height: auto; | ||
margin-bottom: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Ongoing Maintenance</h1> | ||
<p>We are currently undergoing maintenance and cannot be accessed.</p> | ||
<p>Please check back and try again.</p> | ||
</div> | ||
</body> | ||
</html> |