-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.php
20 lines (20 loc) · 1002 Bytes
/
navbar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="navbar">
<a class="active" href="index.php"><i class="fa fa-fw fa-home"></i> Home</a>
<div class="dropdown">
<button class="dropbtn">Tables
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="./showall.php?table=Facilities">Facilities</a>
<a href="./showallqueried.php?query=Students">Students</a>
<a href="./showallqueried.php?query=Employees">Employees</a>
<a href="./showall.php?table=Vaccinations">Vaccinations</a>
<a href="./showall.php?table=Infections">Infections</a>
<a href="./showall.php?table=StudentRegistrations">Student Registrations</a>
<a href="./showall.php?table=Schedules">Schedules</a>
</div>
</div>
<a href="custom.php"><i class="fa fa-fw fa-circle-question"></i> Custom Queries</a>
<a href="diagram.php"><i class="fa fa-fw fa-diagram-project"></i> E/R Diagram</a>
<a href="about.php"><i class="fa fa-fw fa-circle-info"></i> About</a>
</div>