-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
31 lines (23 loc) · 890 Bytes
/
header.php
File metadata and controls
31 lines (23 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<body>
<header>
<div class="entete">
<div class="slogan">
La ludothèque libre pour tous !
</div>
<div class="conecter">
<?php if(isset($_SESSION['prenom'])){ echo 'Bonjour '.$_SESSION['nom'].' '.$_SESSION['prenom'].'';}?>
</div>
</div>
<a href="main.php"><div id="logo"></div></a>
<a <?php if(isset($_SESSION['prenom'])){ echo 'href="mon_compte.php"';}else{echo 'href="connexion.php"';}?> ><div id="connec"></div></a>
<a href="panier.php"><div id="panier"></div></a>
<nav>
<ul>
<li class = "menu"><a class="lien_menu" href="main.php">Acceuil</a></li>
<div class="separateur"> | </div>
<li class = "menu"><a class="lien_menu" href="catalogue.php">Catalogue</a></li>
<div class="separateur"> | </div>
<li class = "menu"><a class="lien_menu" href="recherche.php">Recherche</a></li>
</ul>
</nav>
</header>