-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin_header.php
More file actions
32 lines (30 loc) · 1.25 KB
/
admin_header.php
File metadata and controls
32 lines (30 loc) · 1.25 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
<?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="flex">
<a href="admin_page.php" class="logo">Панель администратора</a>
<nav class="navbar">
<a href="admin_page.php">Главная</a>
<a href="admin_books.php">Книги</a>
<a href="admin_leases.php">Выдачи</a>
<a href="admin_users.php">Пользователи</a>
<a href="admin_contacts.php">Сообщения</a>
</nav>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<a href="admin_search_page.php" class="fas fa-search"></a>
<div id="user-btn" class="fas fa-user"></div>
</div>
<div class="account-box">
<p>username : <span><?= $_SESSION['admin_name'] ?></span></p>
<p>email : <span><?= $_SESSION['admin_email'] ?></span></p>
<a href="logout.php" class="delete-btn">Выйти</a>
</div>
</div>
</header>