mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 20:47:09 +00:00
16 lines
276 B
PHP
16 lines
276 B
PHP
<?php
|
|
|
|
require_once "config.php";
|
|
require_once "views/header.php";
|
|
|
|
http_response_code(404);
|
|
?>
|
|
|
|
<div class="alert alert-danger mt-4 mb-4">
|
|
<h2 class="display-5">
|
|
Cette page n'existe pas.
|
|
</h2>
|
|
</div>
|
|
|
|
<?php
|
|
require_once "views/footer.php";
|