forked from ankit071105/Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sell.html
339 lines (312 loc) · 10.1 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sell Ticket</title>
<link rel="shortcut icon" href="images/4.jpeg" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="index.css">
<script src="https://kit.fontawesome.com/3d20c433e1.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="about.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="faq.css">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="why-us.css">
<script src="https://kit.fontawesome.com/3d20c433e1.js" crossorigin="anonymous"></script>
<style>
/* code for bottom to top nav */
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: #1fb899;
color: white;
cursor: pointer;
padding: 10px 6px;
border-radius: 4px;
width: 40px !important;
height: 40px !important;
}
#myBtn:hover {
background-color: #4cc6ad;
}
/* code for chatbot button */
#chatbotBtn {
position: fixed;
bottom: 65px;
right: 30px;
z-index: 99;
border: none;
outline: none;
background-image: url('./images/bot.jpg');
background-size: cover;
background-position: center;
padding: 0;
width: 50px !important;
height: 50px !important;
border-radius: 100%;
}
.chatbot-container {
display: none;
width: 370px;
max-width: 100%;
position: fixed;
bottom: 75px;
right: 30px;
margin: 50px auto;
padding: 20px;
z-index: 1001;
border-radius: 10px;
box-shadow: #64646f33 0px 7px 29px 0px;
background: #31363F;
}
.chatbot-container.chatbot-show {
display: block;
}
.chatbot-title {
text-align: center;
font-size: 24px;
font-weight: bold;
color: #edf1f3;
}
.chatbot-chat {
height: 250px;
overflow-y: scroll;
margin: 20px 0;
padding: 10px;
border: 2px solid #545250;
border-radius: 5px;
background: #222831;
}
.chatbot-input {
position: relative;
width: 100%;
padding: 10px;
border: 2px solid #cbcbce;
border-radius: 5px;
outline: none;
font-size: 15px;
}
.chatbot-button {
position: absolute;
width: 80px;
border: none;
padding: 1px;
background: #31363F;
color: white;
font-size: 15px;
font-weight: bold;
cursor: pointer;
margin-top: -1.02rem;
margin-left: -4.1rem;
outline: none;
border-radius: 100%;
}
.progress-bar {
position: fixed;
top: 0;
left: 0;
height: 5px;
background: #1fb899;
width: 0;
transition: width 0.1s ease-in-out;
z-index: 9999;
}
/* Card styling */
.sell-ticket {
padding: 2rem;
text-align: center;
}
.sell-options {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
margin-top: 2rem;
}
.card {
background: #f9f9f9;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
width: 250px;
position: relative;
text-align: left;
}
.badge {
position: absolute;
top: 10px;
right: 10px;
background: #ff6347;
color: #fff;
padding: 0.3rem 0.8rem;
border-radius: 5px;
font-size: 0.8rem;
font-weight: bold;
}
.card-title {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
.card-description {
font-size: 0.9rem;
color: #555;
margin-bottom: 1rem;
}
.btn {
display: inline-block;
padding: 0.5rem 1rem;
background: #1fb899;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s ease;
}
.btn:hover {
background: #17a085;
}
</style>
</head>
<body>
<!-- Navbar -->
<div id="scrollProgressBar" class="progress-bar"></div>
<button onclick="topFunction()" id="myBtn" title="Go to top"><i class="fa fa-arrow-up"
aria-hidden="true"></i></button>
<!-- Chatbot -->
<button onclick="toggleChatbot()" id="chatbotBtn" title="chat bot"></button>
<div class="chatbot-container" id="chatbot-container">
<div class="chatbot-title">Ticket Bot</div>
<div class="chatbot-chat" id="chatbot-chat"></div>
<input type="text" class="chatbot-input" id="chatbot-input" placeholder="Type your message here...." />
<button class="chatbot-button" id="chatbot-button"><i class="fa-brands fa-telegram"></i></button>
</div>
<nav class="navbar">
<a href="./index.html" id="logo-href">
<div class="logo-container">
<img src="images/4.jpeg" alt="Ticket Booking Logo" class="logo-image">
<div class="logo">Ticket Marketplace</div>
</div>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="buy.html">Buy Ticket</a></li>
<li><a href="sell.html"><i class="fas fa-tag"></i> Sell</a></li>
<li><a href="#contact"><i class="fas fa-envelope"></i> Contact</a></li>
<li><a href="contributor.html"><i class="fas fa-users"></i> Our Contributors</a></li>
<li><a href="/client/register.html" class="login-btn"><i class="fas fa-user"></i></a></li>
<button id="darkModeToggle" style="width: 40px; height: 40px;">🌙</button>
</ul>
</nav>
<!-- Sell Ticket Section -->
<section class="sell-ticket">
<div class="container">
<h1>Sell Your Tickets Easily</h1>
<p>Welcome to our marketplace where you can easily sell your unused tickets. Whether it's for a concert, sports
event, or travel, we've got you covered. Simply choose the type of ticket you want to sell and follow the steps
to post your listing.</p>
<div class="sell-options">
<div class="card">
<div class="badge">Popular</div>
<div class="card-title">Bus Ticket</div>
<div class="card-description">Sell your bus tickets quickly and easily through our platform.</div>
<a href="bus_sell.html" class="btn">Sell Bus Ticket</a>
</div>
<div class="card">
<div class="badge">New</div>
<div class="card-title">Train Ticket</div>
<div class="card-description">Get a great deal when selling your train tickets with us.</div>
<a href="train_sell.html" class="btn">Sell Train Ticket</a>
</div>
<div class="card">
<div class="badge">Limited Offer</div>
<div class="card-title">Concert Ticket</div>
<div class="card-description">Sell concert tickets effortlessly and reach interested buyers.</div>
<a href="concert_sell.html" class="btn">Sell Concert Ticket</a>
</div>
<div class="card">
<div class="badge">Hot</div>
<div class="card-title">Sports Ticket</div>
<div class="card-description">Sell your sports tickets to a wide audience of fans.</div>
<a href="sports_sell.html" class="btn">Sell Sports Ticket</a>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer class="footer-container">
<div class="footer-top">
<div class="footer-logo-section">
<img src="images/3.jpeg" alt="easyJet holidays logo" class="footer-logo">
<p style="color: #b5fdf4;">Affordable adventures, unforgettable memories—explore with ease.</p>
<p style="color: #dcfffa;" class="follow-us">FOLLOW US ON HERE:</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
<div class="footer-column">
<h4>HELPFUL LINKS</h4>
<ul>
<li><a href="#">Help Centre</a></li>
<li><a href="#">Special Assistance</a></li>
<li><a href="#">Download The App</a></li>
<li><a href="#">Booking Conditions</a></li>
</ul>
</div>
<div class="footer-column">
<h4>ABOUT US</h4>
<ul>
<li><a href="#">Media Center</a></li>
<li><a href="#">Investors</a></li>
<li><a href="#">Modern Slavery Act</a></li>
<li><a href="#">Terms Of Use</a></li>
</ul>
</div>
<div class="footer-column">
<h4>KEEPING SAFE</h4>
<ul>
<li><a href="#">ATOL Protected</a></li>
<li><a href="#">Travel Aware</a></li>
<li><a href="#">FCDO Travel Advice</a></li>
<li><a href="#">ABTA</a></li>
</ul>
</div>
<div class="footer-column">
<h4>FIND US</h4>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Group Cookie Notice</a></li>
<li><a href="#">Privacy And Policy</a></li>
<li><a href="#">Sitemap</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<ul>
<li><a href="#">Holiday Type</a></li>
<li><a href="#">Holiday Deals</a></li>
<li><a href="#">Popular Counters</a></li>
<li><a href="tophotels.html">Top Hotels</a></li>
</ul>
</div>
</footer>
</body>
</html>