78 lines
2.0 KiB
PHP
78 lines
2.0 KiB
PHP
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="id">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>503 Service Unavailable - Sedang Perbaikan</title>
|
||
|
|
<style>
|
||
|
|
/* Gaya CSS */
|
||
|
|
body {
|
||
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
|
|
background-color: #f4f7f6; /* Latar belakang abu-abu muda */
|
||
|
|
color: #333;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 100vh;
|
||
|
|
margin: 0;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container {
|
||
|
|
max-width: 600px;
|
||
|
|
padding: 40px;
|
||
|
|
background: #ffffff;
|
||
|
|
border-radius: 12px;
|
||
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-size: 3.5em;
|
||
|
|
color: #e74c3c; /* Merah cerah untuk status */
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
font-size: 1.8em;
|
||
|
|
color: #2c3e50;
|
||
|
|
margin-top: 0;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
p {
|
||
|
|
font-size: 1.1em;
|
||
|
|
line-height: 1.6;
|
||
|
|
margin-bottom: 25px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.animation-container img {
|
||
|
|
max-width: 100%;
|
||
|
|
height: auto;
|
||
|
|
max-height: 300px; /* Batasan tinggi untuk gambar animasi */
|
||
|
|
margin-bottom: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.refresh-info {
|
||
|
|
font-size: 0.9em;
|
||
|
|
color: #7f8c8d;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<div class="animation-container">
|
||
|
|
<img src="https://assets-v2.lottiefiles.com/a/f048727e-117f-11ee-a4ee-1f7127934c4a/IWDLjo5Myj.gif" alt="Animasi sedang perbaikan" onerror="this.style.display='none'">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h1>503</h1>
|
||
|
|
<h2>PEMELIHARAAN SISTEM</h2>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
Mohon maaf, kami sedang melakukan <strong>Pemeliharaan Sistem</strong>. Tim IT sedang bekerja memulihkan layanan secepatnya!
|
||
|
|
</p>
|
||
|
|
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|