VanguardAI/app/Views/error/408.php
2024-10-27 12:50:51 -06:00

57 lines
1.6 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 408 - Tiempo de Espera Agotado</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">Tiempo de Espera Agotado</h4>
<div class="image-placeholder">
[Placeholder para imagen de error 408]
</div>
<h2 class="text-center mb-3">Error 408</h2>
<p class="text-center mb-4">El servidor no pudo procesar tu solicitud en el tiempo esperado.</p>
</div>
</div>
</div>
</body>
</html>