-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
65 lines (55 loc) · 1.97 KB
/
error.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
$error_code = $_GET["code"];
if($error_code == null) $error_code = 500;
$messages = array(
403 => "Accès non autorisé.",
404 => "Page non trouvée.",
500 => "Erreur du serveur."
);
?>
<!DOCTYPE html>
<html lang="fr">
<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>DaVinciBot - Erreur <?php echo $error_code; ?></title>
<link rel="stylesheet" href="/style/all.css">
<link rel="stylesheet" href="/style/error.css">
<?php include("./include/meta_tags.php") ?>
</head>
<body>
<?php $active_page = "error"; include("./include/header.php"); ?>
<section>
<div id="title">
<h1 id="error-code"><?php echo $error_code ?></h1>
<h2 id="error-title">ERREUR.</h2>
</div>
<h2 id="error-message">
<?php echo $messages[$error_code]; ?>
</h2>
<a href="/" id="error-button">Retour à l'accueil</a>
</section>
<footer id="error-footer">
<div id="error-footer-address">
12 avenue Léonard de Vinci
<br/>92400 Courbevoie
</div>
<div id="error-footer-contacts">
<h4>Contactez-nous :</h4>
<a href="mailto:davincibot@devinci.fr">davincibot@devinci.fr</a>
</div>
<div id="error-footer-socials">
<a href="https://www.instagram.com/davincibot_pulv/" target="_blank">
<img src="/assets/icons/instagram.svg" alt="Logo Instagram">
</a>
<a href="https://www.facebook.com/DaVinciBotPULV/" target="_blank">
<img src="/assets/icons/facebook.svg" alt="Logo Facebook">
</a>
<a href="https://www.linkedin.com/company/davincibot/" target="_blank">
<img src="/assets/icons/linkedin.svg" alt="Logo LinkedIn">
</a>
</div>
</footer>
</body>
</html>