-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1-header.php
60 lines (42 loc) · 1.75 KB
/
1-header.php
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<html lang="fr">
<head>
<title>Header</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0,viewport-fit=cover">
<link rel="stylesheet" type="text/css" href="1-styles.css">
</head>
<header>
<div class="menu-hamburger-header">
<img src="/images/logo-menu-hamburger.png" class="logo-menu-hamburger-header"/>
<img src="/images/cross.png" class="logo-menu-close-header hidden"/>
</div>
<div class="logo-container-header">
<a href="index.php">
<img src="/images/logo-ixewo.png" class="header logo-ixewo-header"/>
</a>
</div>
<nav class="main-nav-header">
<?php
if (isset($_COOKIE['phpauth_session_cookie'])) {
echo '<a href="profil" class="profile-button">Profil</a>';
} else {
echo '<a href="profil" class="profile-button">Connectez-vous</a>';
}
?>
<a href="consoles">Consoles</a>
<a href="ordinateurs">Ordinateurs</a>
<a href="jeux-videos">Jeux-Vidéos</a>
<a href="produits-derives">Produits Dérivés</a>
<a href="le-projet">Le Projet</a>
<a href="contact">Contact</a>
<a href="vendre" class="vendre-button">Vendre</a>
</nav>
<form action="rechercher" method="get" class="search-bar-header">
<input type="text" name="query" placeholder="Que cherchez vous ?" />
</form>
<div class="search-container-header">
<img id="logo-search-header" src="/images/search.png" alt="Recherche" class="logo-search-header"></img>
</div>
<script src="1-script.js"></script>
</header>
</html>