-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaderUser.php
More file actions
36 lines (31 loc) · 1.71 KB
/
Copy pathheaderUser.php
File metadata and controls
36 lines (31 loc) · 1.71 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
36
<!-- Created on January 28th, 2019. -->
<!-- Written by: Tiffany C. -->
<!-- header for User file to include in other php files -->
<!-- Navigation -->
<nav class="navbar navbar-expand-md navbar-dark" id="mainNav">
<a class="navbar-brand" href="showTicketsPage.php">
<img src="public/images/ChemistryRepairTicketLogo.png" alt="Queen's Department of Chemistry Logo" alt="logo" height="115" width="280">
</a>
<div class="row">
<button class="navbar-toggler ml-auto" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item <?php echo ( $page == "Tickets" ? "active" : "" ) ?>">
<!--change the href's to corresponding pages-->
<a class="nav-link" href="showTicketsPage.php">Tickets</a>
</li>
<li class="nav-item <?php echo ( $page == "Create Ticket" ? "active" : "" ) ?>">
<a class="nav-link" href="createTicketPage.php">Create Ticket</a>
</li>
<li class="nav-item <?php echo ( $page == "How To" ? "active" : "" ) ?>">
<a class="nav-link" href="howTo.php">How To</a>
</li>
<li class="nav-item">
<input class="nav-link" id="button" type="button" onclick='logout();' value='Logout'/>
</li>
</ul>
</div>
</nav>