-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminHeader.php
More file actions
32 lines (27 loc) · 959 Bytes
/
adminHeader.php
File metadata and controls
32 lines (27 loc) · 959 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
32
<?php
session_start();
include_once "./config/dbconnect.php";
?>
<!-- nav -->
<nav class="navbar navbar-expand-lg navbar-light px-5" style="background-color: #3B3131;">
<a class="navbar-brand ml-5" href="./index.php">
<img src="./assets/images/logo.png" width="80" height="80" alt="Swiss Collection">
</a>
<ul class="navbar-nav mr-auto mt-2 mt-lg-0"></ul>
<div class="user-cart">
<?php
if(isset($_SESSION['user_id'])){
?>
<a href="" style="text-decoration:none;">
<i class="fa fa-user mr-5" style="font-size:30px; color:#fff;" aria-hidden="true"></i>
</a>
<?php
} else {
?>
<a href="" style="text-decoration:none;">
<i class="fa fa-sign-in mr-5" style="font-size:30px; color:#fff;" aria-hidden="true"></i>
</a>
<?php
} ?>
</div>
</nav>