Files
Projet-CMS/public/404.php
2025-11-02 19:42:11 +01:00

13 lines
238 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
require '../includes/header.php';
?>
<main>
<h2>Erreur 404</h2>
<p>La page que vous recherchez nexiste pas.</p>
<p><a href="index.php">Retour à laccueil</a></p>
</main>
<?php
require '../includes/footer.php';
?>