-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
37 lines (34 loc) · 993 Bytes
/
admin.html
File metadata and controls
37 lines (34 loc) · 993 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dunedin Car Rentals</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="Resources/Libraries/jquery-3.5.1.min.js"></script>
<script src="bookings.js"></script>
</head>
<body>
<main>
<header>
<h1>Dunedin Car Rentals</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="book.html">Make a booking</a></li>
<li><a href="locations.html">Locations</a></li>
</ul>
</nav>
</header>
<section>
<h2>Confirmed Bookings</h2>
<table id="bookings"></table>
</section>
<footer>
<ul>
<li><strong>© Dunedin Car Rentals</strong></li>
<li><a href="index.html">Logout</a></li>
</ul>
</footer>
</main>
</body>
</html>