mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 20:47:09 +00:00
12 lines
178 B
PHP
12 lines
178 B
PHP
<?php
|
|
|
|
require_once "config.php";
|
|
require_once "views/header.php";
|
|
|
|
http_response_code(404);
|
|
|
|
echo "<h1>Cette page n'existe pas.</h1>";
|
|
|
|
require_once "views/footer.php";
|
|
|
|
exit(); |