forked from ankit071105/Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbus_sell.html
67 lines (54 loc) · 2.06 KB
/
bus_sell.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sell Bus Ticket</title>
<link rel="shortcut icon" href="images/4.jpeg" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar">
<div class="logo">Ticket Marketplace</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="bus_sell.html">Sell Bus Ticket</a></li>
<li><a href="train_sell.html">Sell Train Ticket</a></li>
<li><a href="buy.html">Buy Ticket</a></li>
</ul>
</nav>
<section class="sell-ticket">
<h1>Sell Bus Ticket</h1>
<form id="busTicketForm">
<label for="name">Your Name:</label>
<input type="text" id="name" required>
<label for="phone">Phone Number:</label>
<input type="text" id="phone" required>
<label for="email">Email:</label>
<input type="email" id="email" required>
<label for="ticketNumber">Ticket Number:</label>
<input type="text" id="ticketNumber" required>
<label for="busName">Bus Name:</label>
<input type="text" id="busName" required>
<label for="departureLocation">Departure Location:</label>
<input type="text" id="departureLocation" required>
<label for="arrivalLocation">Arrival Location:</label>
<input type="text" id="arrivalLocation" required>
<label for="departureTime">Departure Time:</label>
<input type="time" id="departureTime" required>
<label for="date">Date:</label>
<input type="date" id="date" required>
<label for="seatNumber">Seat Number:</label>
<input type="text" id="seatNumber" required>
<label for="price">Original Price:</label>
<input type="number" id="price" required>
<button type="submit" class="btn">Submit Ticket</button>
</form>
<p id="sellerMessage"></p>
</section>
<footer class="footer">
<p>© 2024 Ticket Marketplace | All rights reserved.</p>
</footer>
<script src="app.js"></script>
</body>
</html>