2019-09-02 19:19:21 +00:00
|
|
|
<?php
|
|
|
|
|
2019-09-06 10:27:23 +00:00
|
|
|
require_once "config.php";
|
2019-09-06 11:48:50 +00:00
|
|
|
require_once "views/header.php";
|
2019-09-02 19:19:21 +00:00
|
|
|
|
|
|
|
http_response_code(404);
|
2019-12-26 21:30:42 +00:00
|
|
|
?>
|
2019-09-02 19:19:21 +00:00
|
|
|
|
2019-12-26 21:30:42 +00:00
|
|
|
<div class="alert alert-danger mt-4 mb-4">
|
|
|
|
<h2 class="display-5">
|
|
|
|
Cette page n'existe pas.
|
|
|
|
</h2>
|
|
|
|
</div>
|
2019-09-02 19:19:21 +00:00
|
|
|
|
2019-12-26 21:30:42 +00:00
|
|
|
<?php
|
|
|
|
require_once "views/footer.php";
|