-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (65 loc) · 2.22 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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arichen</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<!--seat selection -->
<div class="seat-selection">
<div class="seats">
<button class="how-to">HOW TO USE</button>
<pre id="filled-slots"></pre>
<p>NB: Extra Charges are incurred, after spending <b>30mins</b></p>
</div>
</div>
<!-- input field and table -->
<div class="input-field">
<p>Parking Slot ID</p>
<input type="number" id="slot-id" placeholder="Slot ID">
<p>Name</p>
<input type="text" id="name" placeholder="Full name">
<p>Car Model</p>
<input type="text" id="car-model" placeholder="Car Model">
<p>NB: Slots 1-10 cost 60$, while slot 11-15 cost 100$</p>
<button class="tabulate" id="book">Book Slot</button>
<p><b>PAY AND EXIT</b></p>
<p>Parking Slot ID</p>
<input type="number" id="retrieveSlot" placeholder="Slot ID">
<button class="tabulate" id="tabulate">Tabulate</button>
<!-- table -->
<table>
<tr>
<td>Slot</td>
<td id="slots-selected">0</td>
</tr>
<tr>
<td>Name</td>
<td id="retrieveName"> - </td>
</tr>
<tr>
<td>Car Model</td>
<td id="retrieveModel"> - </td>
</tr>
<tr>
<td>Price (1st 30mins)</td>
<td id="price">0</td>
</tr>
<tr>
<td>Time Spent</td>
<td id="time">0</td>
</tr>
<tr>
<td>Total Bills</td>
<td id="total">0</td>
</tr>
</table>
<button class="how-to">Continue</button>
</div>
<script src="index.js"></script>
</main>
</body>
</html>