-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
28 lines (25 loc) · 913 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Select Seat</title>
<link rel="stylesheet" type="text/css" href="popup.css">
</head>
<body>
<h1>Select Seat Number</h1>
<div id="seatButtons">
<!-- Buttons for seat numbers 1-11 -->
<button class="seatButton" data-seat="1">1</button>
<button class="seatButton" data-seat="2">2</button>
<button class="seatButton" data-seat="3">3</button>
<button class="seatButton" data-seat="4">4</button>
<button class="seatButton" data-seat="5">5</button>
<button class="seatButton" data-seat="6">6</button>
<button class="seatButton" data-seat="7">7</button>
<button class="seatButton" data-seat="8">8</button>
<button class="seatButton" data-seat="9">9</button>
<button class="seatButton" data-seat="10">10</button>
<button class="seatButton" data-seat="11">11</button>
</div>
<script src="popup.js"></script>
</body>
</html>