66 lines
2.0 KiB
PHP
66 lines
2.0 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 404 - Página no encontrada</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
|
|
rel="stylesheet">
|
|
<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);
|
|
}
|
|
|
|
.btn-primary {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.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">Oops! Página no encontrada</h4>
|
|
<div class="image-placeholder">
|
|
[Placeholder para imagen de error 404]
|
|
</div>
|
|
<h2 class="text-center mb-3">Error 404</h2>
|
|
<p class="text-center mb-4">Lo sentimos, la página que estás buscando no existe o ha sido movida.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |