-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_navbar.php
24 lines (23 loc) · 1.09 KB
/
admin_navbar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel = "stylesheet" type = "text/css" href="./css/bootstrap.min.css"/>
<link rel = "stylesheet" type = "text/css" href="./css/home.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="./src/jquery-3.3.1.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<h3><a class="clickable_link" href="home.php">Home</a></h3>
<h5><a class="clickable_link ml-4" href="manage_ads.php">ADS</a></h5>
<h5><a class="clickable_link ml-4" href="manage_users.php">Users</a></h5>
<h5><a class="clickable_link ml-4" href="manage_groups.php">Groups</a></h5>
<div class="d-flex flex-row-reverse w-100">
<button type="button" id= "button_logout" class="btn btn-light">Logout</button>
</div>
</nav>
</body>
<script src="./src/navbar_functions.js"></script>
</html>
</html>