-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy patherror.php
More file actions
30 lines (28 loc) · 860 Bytes
/
error.php
File metadata and controls
30 lines (28 loc) · 860 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nope !</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<div class="errorPanel">
<img src="images/false.gif" alt="False !">
<p>Nous rencontrons les problèmes suivants pour traiter votre demande : </p>
<ul>
<?php
foreach($errors as $error) {
echo '<li>';
echo $error;
echo '</li>' . PHP_EOL;
}
?>
</ul>
<p><a href="form.html">Retour au formulaire</a></p>
</div>
</main>
</body>
</html>