-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
63 lines (58 loc) · 1.77 KB
/
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
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
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Seat Booking</title>
<link rel="stylesheet" href="styles/popup.css">
<link href="https://cdn.jsdelivr.net/npm/litepicker/dist/css/litepicker.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<a
href="https://worksense.optimaze.net/"
target="_blank"
rel="noopener noreferrer"
style="text-decoration: none"
><div style="display: flex; justify-content: left; align-items: center">
<img src="icons/icon32.png" alt="EG worksense" />
<h2 style="font-size: 30px; color: #123845; margin: 10px">
EG Worksense
</h2>
</div></a
>
<div class="seatSelectionWrapper" style="display: flex; gap: 4px">
<input
type="text"
id="seatId"
placeholder="Seat Id"
autocomplete="on"
style="flex: 8"
class="hidden"
/>
<button id="btnSeatIdSelection" style="flex: 4">Select Seat</button>
</div>
<span id="seatIdAlertMessage"></span>
<input
type="text"
id="floorId"
placeholder="Floor Id"
class="hidden"
readonly
/>
<input type="text" id="datepicker" placeholder="Pick a date" />
<input
type="email"
id="emailId"
placeholder="Email Id"
autocomplete="on"
/>
<hr>
<button id="bookButton">Book Seats</button>
<div id="status"></div>
<div id="error"></div>
</div>
<script src="scripts/popup.js"></script>
<script src="https://cdn.jsdelivr.net/npm/litepicker/dist/litepicker.js"></script>
</body>
</html>