1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-01-27 05:01:18 +00:00

12 lines
178 B
PHP
Raw Normal View History

2019-09-02 21:19:21 +02:00
<?php
2019-09-06 12:27:23 +02:00
require_once "config.php";
2019-09-06 13:48:50 +02:00
require_once "views/header.php";
2019-09-02 21:19:21 +02:00
http_response_code(404);
echo "<h1>Cette page n'existe pas.</h1>";
2019-09-06 13:48:50 +02:00
require_once "views/footer.php";
2019-09-02 21:19:21 +02:00
exit();