-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
49 lines (46 loc) · 1.92 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Página no encontrada</title>
<link rel="stylesheet" href="/Delatel/css/404.css">
</head>
<body>
<div class="container">
<div class="content">
<div class="text-content">
<h1>¡Ups! Página no encontrada</h1>
<p>Lo sentimos, la página que buscas no existe o ha sido movida. Nuestro amigable robot está aquí para ayudarte a encontrar tu camino de vuelta.</p>
<div class="buttons">
<a href="../index.php" class="btn btn-primary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-right: 0.5rem;">
<path d="m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
<polyline points="9 22 9 12 15 12 15 22"></polyline>
</svg>
Volver al inicio
</a>
<a href="javascript:history.back()" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-right: 0.5rem;">
<path d="m12 19-7-7 7-7"></path>
<path d="M19 12H5"></path>
</svg>
Página anterior
</a>
</div>
</div>
<div class="robot">
<div class="robot-antenna"></div>
<div class="robot-head">
<div class="robot-eye left"></div>
<div class="robot-eye right"></div>
</div>
<div class="robot-body"></div>
<div class="robot-arm left"></div>
<div class="robot-arm right"></div>
<div class="error-text">404</div>
</div>
</div>
</div>
</body>
</html>