This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
FunctionProject/views/404.php

16 lines
462 B
PHP
Raw Normal View History

2019-08-28 14:16:47 +02:00
<!-- Config -->
2019-09-13 21:56:36 +02:00
<?php include("../php/config.php");?>
2019-08-16 13:45:04 +02:00
<!-- Header -->
2019-09-13 21:56:36 +02:00
<?php include("../incl/header.php");?>
2019-08-16 13:45:04 +02:00
<!-- Page Content -->
2019-12-28 22:36:09 +01:00
<main class="container-fluid flex-fill">
<div class="container">
<h1>Erreur <span class="important">404</span></h1>
<p class="pt-3 text-center">Cette page n'existe pas! <a href="/index.php" class="important">Revenir à la page d'accueil ?</a></p>
</div>
</main>
2019-08-16 13:45:04 +02:00
<!-- Footer -->
2019-09-13 21:56:36 +02:00
<?php include("../incl/footer.php");?>