Structure

This commit is contained in:
Esteban
2026-05-28 21:30:59 +02:00
commit de684d1b4c
6 changed files with 74 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
// Ce Header sera inseré sur des pages grâce a la fonction require_once('./../elements/header.php')
// Rappel des différentes pages : Acceuil, Projets, Contact
// Rappel des boutons : Connexion, (Si le temps) Panneau Administrateur (Seulement si l'utilisateur est admin)
?>
<head>
<header>
<!-- Texte qui sera dans le header -->
<a href="./../index.php"> Esteban MOUSSU - PortFolio</a>
<!-- Module de navigation -->
<nav>
<a href="./../index.php">Accueil</a>
<a href="./projets.php">Projets</a>
<a href="./contact.php">Contact</a>
<a href="./login.php">Connexion</a>
<!-- Fonctionnalité future changement de thème dark / light et panneau admin -->
</nav>
</header>
</head>