-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_header.php
53 lines (43 loc) · 1.49 KB
/
admin_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
<?php
if(isset($message)){
foreach($message as $message){
echo '
<div class="message">
<span>'.$message.'</span>
<i class="fas fa-times" onclick="this.parentElement.remove();"></i>
</div>
';
}
}
?>
<header class="header">
<div class="flex">
<a href="admin_page.php" class="logo">Admin<span>Panel</span></a>
<nav class="navbar">
<a href="admin_page.php">home</a>
<a href="admin_products.php">products</a>
<a href="admin_orders.php">orders</a>
<a href="admin_users.php">users</a>
<a href="admin_contacts.php">messages</a>
</nav>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="user-btn" class="fas fa-user"></div>
</div>
<div class="profile">
<?php
$select_profile = $conn->prepare("SELECT * FROM `users` WHERE id = ?");
$select_profile->execute([$admin_id]);
$fetch_profile = $select_profile->fetch(PDO::FETCH_ASSOC);
?>
<img src="uploaded_img/<?= $fetch_profile['image']; ?>" alt="">
<p><?= $fetch_profile['name']; ?></p>
<a href="admin_update_profile.php" class="btn">update profile</a>
<a href="logout.php" class="delete-btn">logout</a>
<div class="flex-btn">
<a href="login.php" class="option-btn">login</a>
<a href="register.php" class="option-btn">register</a>
</div>
</div>
</div>
</header>