-
Notifications
You must be signed in to change notification settings - Fork 0
/
railway.html
49 lines (48 loc) · 1.36 KB
/
railway.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style/railway.css" />
<title>Booking System</title>
</head>
<body>
<style>
body {
margin: 0;
padding: 0;
background-image: url("images/vandebharat_1.jpeg");
body {
background-size: cover;
}
background-repeat: no-repeat;
background-attachment: fixed;
@media (max-width: 768px) {
body {
background-size: contain;
}
}
}
</style>
<div class="container">
<h1>Booking System</h1>
<div class="menu">
<button id="bookBtn">Book</button>
<button id="cancelBtn">Cancel</button>
<button id="displayBtn">Display Queues</button>
<button id="firstBtn">See First ID</button>
<button id="exitBtn">Exit</button>
</div>
<div id="display">
<p id="waitingMessage"></p>
<p id="waitingFullMessage"></p>
<div class="queue">
<p id="mainQueueDisplay">Main Queue: Empty</p>
<p id="waitingQueueDisplay">Waiting Queue: Empty</p>
</div>
</div>
</div>
<script src="js/railway.js"></script>
<!-- Replace with the path to your JavaScript file -->
</body>
</html>