-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdashboard.php
More file actions
48 lines (41 loc) · 1.55 KB
/
dashboard.php
File metadata and controls
48 lines (41 loc) · 1.55 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JUSTBFITNESS</title>
<link rel="shortcut icon" href="assets/favicon.ico">
<link rel="stylesheet" href="CSS/home.css">
<link rel="stylesheet" href="CSS/view.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat&display=swap">
</head>
<body>
<header>
<div class="header-container">
<div class="right-box">
<img class="logo-image" src="assets/logo.png" alt="Logo" />
<div class="title-container"> JustBFitness</div>
</div>
<div class="right-box">
<table>
<tr>
<td class="dropdown">
<div class="icon-container"><img class="icon-image" src="assets/profile.png" alt="Icon" /> </div>
<div class="dropdown-content">
<a href="?controller=user&action=read">My Profile</a>
<a href="?controller=user&action=logout">Logout</a>
</div>
</td>
</tr>
</table>
</div>
</div>
</header>
<nav class="nav-menu">
<ul>
<li><a href="?controller=user">My Bookings</a></li>
</ul>
</nav>
</body>
</html>