35 lines
688 B
PHP
35 lines
688 B
PHP
<?php session_start(); ?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<base href="http://www.bernard.890m.com/"/>
|
|
<?php include 'includes/meta.php'; ?>
|
|
</head>
|
|
<body>
|
|
<?php include 'includes/header.php'; ?>
|
|
|
|
<h1>404 Not Found</h1>
|
|
|
|
<p>
|
|
La page demandée demeure introuvable.<br/>
|
|
Cette dernière n'existe plus ou pas encore.<br/>
|
|
Bah au pire c'est pareil xD
|
|
</p>
|
|
|
|
<button onclick="window.history.go(-1);" >Page précédente</button><br/>
|
|
|
|
<?php
|
|
switch(rand(0,1)){
|
|
case 1:
|
|
include 'allein/pieces.php';
|
|
break;
|
|
default:
|
|
include 'allein/univers.php';
|
|
|
|
}
|
|
?>
|
|
<?php include 'includes/footer.php'; ?>
|
|
|
|
</body>
|
|
</html>
|