-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
47 lines (46 loc) · 1.88 KB
/
header.php
File metadata and controls
47 lines (46 loc) · 1.88 KB
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
<?php if (isset($message)): ?>
<?php foreach ($message as $msg): ?>
<div class="message">
<span><?= $msg ?></span>
<i class="fas fa-times" onclick="this.parentElement.remove();"></i>
</div>
<?php endforeach; ?>
<?php endif; ?>
<header class="header">
<div class="header-1">
<div class="flex">
<a href="home.php" class="logo">БАЗА</a>
<div class="share">
<a href="https://vk.com/yar_l"><i class="fab fa-vk"></i></a>
<a href="https://vk.com/azat_ku"> <i class="fab fa-vk"></i></a>
<a href="https://t.me/yar_laz"> <i class="fab fa-telegram"></i></a>
<a href="https://t.me/perfectfury"> <i
class="fab fa-telegram"></i></a>
</div>
</div>
</div>
<div class="header-2">
<div class="flex">
<nav class="navbar">
<a href="home.php">главная</a>
<a href="about.php">о нас</a>
<a href="books.php">книги</a>
<a href="contact.php">связаться</a>
<a href="orders.php">заказы</a>
<a href="cart.php">корзина</a>
</nav>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<a href="search_page.php" class="fas fa-search"></a>
<div id="user-btn" class="fas fa-user"></div>
</div>
<div class="user-box">
<p>Логин : <span><?= $_SESSION['user_name'] ?></span>
</p>
<p>email : <span><?= $_SESSION['user_email'] ?></span>
</p>
<a href="user_cabinet.php" class="option-btn">Кабинет</a> | <a href="logout.php" class="delete-btn">Выйти</a>
</div>
</div>
</div>
</header>