-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav.php
More file actions
28 lines (27 loc) · 1.26 KB
/
nav.php
File metadata and controls
28 lines (27 loc) · 1.26 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
<nav class="navbar navbar-expand-sm navbar-dark bg-nav animated fadeInDown">
<div class="container">
<a style="color: #ffc107;" class="navbar-brand" href="index.php">
<img style="max-width:50px; margin-top: -7px;" src="logo/auction.svg"> Online Auction
</a>
<div align="center">
<a class="btn btn-warning" href="new_product.php">Add A Product For Bid</a>
</div>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link <?php if ($home == true) { echo 'active'; }?>" href="index.php">Home</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle text-warning" data-toggle="dropdown"><?php echo $row_c->name." ".$row_c->surname;?></a>
<div class="dropdown-menu bg-darkblue">
<a href="view.php" class="text-warning dropdown-item ">View Profile</a>
<a href="bid.php" class="text-warning dropdown-item ?>">Bids I made on Products</a>
<a href="product.php" class="text-warning dropdown-item ">Products I put for Sale</a>
<a href="got.php" class="text-warning dropdown-item ">Products You WON !</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link text-danger" href="logout.php">Logout</a>
</li>
</ul>
</div>
</nav>