-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
30 lines (30 loc) · 1.05 KB
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
img[alt="www.000webhost.com"],
img[alt="www.000webhost.com"][style],
img[src*="000webhost"],
img[src*="000webhost"][style],
body > div:nth-last-of-type(1)[style]{
opacity: 0 !important;
pointer-events:none !important;
width: 0px !important;
height: 0px !important;
visibility:hidden !important;
}
</style>
</head>
<body>
<div class="container d-flex flex-column align-items-center justify-content-center min-vh-100">
<h1 class=" mt-5 text-center">¡Ups! Página no encontrada</h1>
<p class=" lead text-center">La página que solicitaste no se pudo encontrar.</p>
<a href="/" class="btn btn-primary w-25">Volver</a>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>