56 lines
1.5 KiB
HTML
56 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Service Temporarily Unavailable</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
padding: 30px;
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
h1 {
|
|
color: #333;
|
|
margin-bottom: 15px;
|
|
}
|
|
p {
|
|
color: #666;
|
|
font-size: 1.1em;
|
|
margin-bottom: 20px;
|
|
}
|
|
.loader {
|
|
border: 4px solid #f3f3f3; /* Light grey border */
|
|
border-top: 4px solid #3498db; /* Blue border */
|
|
border-radius: 50%;
|
|
width: 40px;
|
|
height: 40px;
|
|
animation: spin 2s linear infinite;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Service is Starting</h1>
|
|
<p>Please wait a moment while the application is launching.</p>
|
|
<div class="loader"></div>
|
|
</div>
|
|
</body>
|
|
</html> |