-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (41 loc) · 1.95 KB
/
index.html
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
49
50
51
52
53
54
55
56
57
<!doctype html>
<html>
<head>
<title>Simple Bus Seat Reservation Site</title>
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/jquery.seat-charts.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="js/jquery.seat-charts.js"></script>
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="row">
<div class="grid-50">
<div id="seat-map">
<div class="front-indicator">Bus Seat Reservation</div>
<h4 class="text-muted fw-bold text-center" style="padding-left:3em; margin:.5em">From Front Row</h4>
<div id="bus-seat-map"></div>
<h4 class="text-muted fw-bold text-center" style="padding-left:3em; margin:.5em">End of Seat Row</h4>
</div>
</div>
<div class="grid-50">
<div class="booking-details">
<form action="" method="post">
<h2>Booking Details</h2>
<h3> Selected Seats (<span id="counter">0</span>):</h3>
<ul id="selected-seats"></ul>
<h2>Total: <b>$<span id="total">0</span></b></h2>
<button type="button" id="checkout-button">Submit Book</button>
</form>
<div id="legend"></div>
<button id="reset-btn" type="button">Reset Bus Seat</button>
</div>
</div>
</div>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>