-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
35 lines (30 loc) · 1.53 KB
/
header.php
File metadata and controls
35 lines (30 loc) · 1.53 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
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary ">
<a class="navbar-brand" style="color: gold;" href="index.php?page=1">Linux Cable Network</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse " id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item ">
<a class="nav-link" id="activeAddCustomers" style="color: white;" href="addCustomersFront.php">Add Customers <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item ">
<a class="nav-link" id="activeHome" style="color: white;" href="index.php?page=1">View Customers</a>
</li>
<li class="nav-item ">
<a class="nav-link" id="activeEditCustomers" style="color: white;" href="EditCustomersFront.php">Edit Customers</a>
</li>
<li class="nav-item ">
<a class="nav-link" id="activeCityArea" style="color: white;" href="addCityAreaFront.php">Add City & Area</a>
</li>
<li class="nav-item ">
<a class="nav-link" id="activeDefaulters" style="color: white;" href="defaulters.php">Defaulters</a>
</li>
<!-- <li class="nav-item ">
<a class="nav-link" href="generateReportFront.php">Get Reports</a>
</li> -->
</ul>
</div>
</nav>
</header>