-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrorpage.php
More file actions
33 lines (28 loc) · 937 Bytes
/
errorpage.php
File metadata and controls
33 lines (28 loc) · 937 Bytes
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
<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<head>
<link rel="shortcut icon" href="./images/icon.png" />
<link rel="stylesheet" type="text/css" href="../css/errorpage.css" />
<script type="text/javascript" src="../js/utilidea.js"></script>
<title>Oops!</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="image-error">
<img class="error" src="../images/robot-error.png" alt="Imagen de un robot que muestra cara de no saber lo que falla.">
</div>
<div class="error-msg">
<h1>Oops!</h1>
<?php
session_start();
if(isset($_SESSION['data_error']))
echo '<label class="texto2">'.$_SESSION['data_error'].'</label>';
?>
</div>
</div>
<input class="submit" type="submit" value="Cerrar" onclick="volver()">
</div>
</body>
</html>