mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 14:07:08 +00:00
18 lines
208 B
PHP
18 lines
208 B
PHP
<?php
|
|
|
|
include_once "server_files/config.php";
|
|
include_once "server_files/header.php";
|
|
|
|
http_response_code(404);
|
|
|
|
?>
|
|
|
|
<h1>Cette page n'existe pas.</h1>
|
|
|
|
<?php
|
|
|
|
include "server_files/footer.php";
|
|
|
|
exit();
|
|
|
|
?>
|