57 lines
1.5 KiB
PHP
57 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="es">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Error 503 - Servicio No Disponible</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body, html {
|
|
height: 100%;
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.image-placeholder {
|
|
width: 100%;
|
|
height: 200px;
|
|
background-color: #f0f0f0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #888;
|
|
font-size: 18px;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="bg-light">
|
|
<div class="container">
|
|
<div class="col-md-6">
|
|
<div class="card p-4">
|
|
<h4 class="text-center fw-bold mb-4">Servicio No Disponible</h4>
|
|
<div class="image-placeholder">
|
|
[Placeholder para imagen de error 503]
|
|
</div>
|
|
<h2 class="text-center mb-3">Error 503</h2>
|
|
<p class="text-center mb-4">El servidor no está disponible temporalmente.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|