-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
31 lines (31 loc) · 698 Bytes
/
404.php
File metadata and controls
31 lines (31 loc) · 698 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
<!DOCTYPE html>
<html>
<head>
<title>404 ERROR</title>
<link rel="stylesheet" href="knacss-unminified.css"/>
<style>
body {
background: url('background.jpg') repeat;
}
#abs {
width: 100%;
text-align: justify;
position: absolute;
top: 20%;
}
.center {
width: 600px;
}
</style>
</head>
<body>
<?php header( "Refresh:5; url=https://app.cvlcondorcet.fr", true, 303); ?>
<div id="abs">
<div class="center">
<h1>Page non trouvée</h1><h2>Erreur 404</h2>
<p>Vous avez dû ou essayé de contourner le système, cher·ère utilisateur·rice <?php echo $_SERVER['REMOTE_ADDR']; ?>. Vous allez être redirigé·e</p>
<h4>Merci de votre visite, cordialement, le Webmaster</h4>
</div>
</div>
</body>
</html>