-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost-ad.html
434 lines (414 loc) · 16.6 KB
/
post-ad.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AdZilla | Post Ad</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<!-- all css -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-icons.min.css" />
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<!-- header section -->
<header id="header-section">
<nav class="bg-white py-3 shadow fixed-top">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-auto">
<a
href="index.html"
class="d-none d-sm-block d-md-none d-lg-block"
>
<img src="images/logo-color.png" width="150px" alt="" />
</a>
<a href="index.html" class="d-sm-none d-md-block d-lg-none">
<img src="images/logo-icon.png" width="45px" alt="" />
</a>
</div>
<div class="col-auto pe-0 d-none d-md-block ps-5">
<a href="ads.html" class="btn btn-outline-primary">Browse Ads</a>
</div>
<div class="col d-none d-md-block pe-5">
<form action="">
<div class="input-group">
<input
type="text"
class="form-control border-primary"
placeholder="What are you looking for?"
/>
<button
type="submit"
class="input-group-text btn btn-primary"
>
<i class="bi bi-search"></i>
</button>
</div>
</form>
</div>
<div class="col col-md-auto text-end">
<a href="dashboard.html" class="btn btn-success me-2"
><i class="bi bi-speedometer me-1"></i>Dashboard</a
>
<button type="submit" class="btn btn-danger">Logout</button>
</div>
</div>
</div>
</nav>
<div class="mobile-search py-3 d-md-none">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-auto pe-0">
<a href="ads.html" class="btn btn-outline-primary">Browse Ads</a>
</div>
<div class="col">
<form action="">
<div class="input-group">
<input
type="text"
class="form-control border-primary"
placeholder="What are you looking for?"
/>
<button
type="submit"
class="input-group-text btn btn-primary"
>
<i class="bi bi-search"></i>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</header>
<!-- header section end -->
<!-- post ad page -->
<main id="post-ad-page">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-12 col-sm-8 col-md-7 col-lg-8">
<div class="card">
<div class="card-body">
<div class="mb-4 text-center">
<h4 class="fw-bold text-uppercase">
<i class="bi bi-megaphone-fill me-2 text-primary"></i>Post
an ad
</h4>
<h6 class="text-secondary">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Perferendis, doloribus.
</h6>
</div>
<form action="">
<div class="row">
<div class="col-12 mb-4">
<div class="input-group">
<span class="input-group-text"
><i class="bi bi-badge-ad-fill text-primary"></i
></span>
<input
type="text"
class="form-control"
placeholder="Ad Title"
required
/>
</div>
</div>
<div class="col-12 col-md-6 mb-4">
<select
class="form-select"
name=""
id=""
autocomplete="off"
required
>
<option selected disabled>Select Division</option>
<option value="">Dhaka Division</option>
<option value="">Khulna Division</option>
<option value="">Barisal Division</option>
<option value="">Rajshahi Division</option>
</select>
</div>
<div class="col-12 col-md-6 mb-4">
<select
class="form-select"
name=""
id=""
autocomplete="off"
required
>
<option selected disabled>Select City</option>
<option value="">Dhaka</option>
<option value="">Khulna</option>
<option value="">Barisal</option>
<option value="">Rajshahi</option>
</select>
</div>
<div class="col-12 mb-4">
<select
class="form-select"
name=""
id=""
autocomplete="off"
required
>
<option selected disabled>Select Category</option>
<option value="">Mobile Phones</option>
<option value="">Electronics</option>
<option value="">Home and Living</option>
<option value="">Sports and Outdoors</option>
</select>
</div>
<div class="col-12 mb-4">
<div class="p-4 bg-light border shadow">
<h6 class="fw-bold mb-3">
<i class="bi bi-image-fill me-2 text-primary"></i
>Upload Photos
<span class="text-secondary fw-normal"
>(Minimum: 4 Photos)</span
>
</h6>
<div class="row">
<div class="col-12 col-md-6">
<input
type="file"
class="form-control mb-3"
required
/>
<input
type="file"
class="form-control mb-3 mb-md-0"
required
/>
</div>
<div class="col-12 col-md-6">
<input
type="file"
class="form-control mb-3"
required
/>
<input type="file" class="form-control" required />
</div>
</div>
</div>
</div>
<div class="col-12 mb-4">
<textarea
class="form-control"
name=""
id=""
cols="30"
rows="8"
placeholder="Describe your item, eg: brand, model, specifications."
required
></textarea>
</div>
<div class="col-12 mb-4">
<div class="p-4 bg-light border shadow">
<h6 class="fw-bold mb-3">
<i class="bi bi-person-fill me-2 text-primary"></i
>Contact Details
</h6>
<div class="row">
<div class="col-12 col-md-6 mb-3">
<div class="input-group">
<span class="input-group-text"
><i
class="bi bi-telephone-fill text-primary"
></i
></span>
<input
type="text"
class="form-control"
value="012345-567890"
disabled
required
/>
</div>
</div>
<div class="col-12 col-md-6 mb-4">
<div class="input-group">
<span class="input-group-text"
><i class="bi bi-envelope-fill text-primary"></i
></span>
<input
type="email"
class="form-control"
value="[email protected]"
disabled
required
/>
</div>
</div>
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary fw-bold">
Post Ad
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- post ad page end -->
<!-- footer section -->
<footer id="footer-section">
<!-- footer top -->
<div class="footer-top bg-dark py-5 border-top border-primary border-5">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-md-6 col-lg-3 mb-5 mb-lg-0">
<h5 class="text-white fw-bold mb-3">Download our app</h5>
<a href="#">
<img
class="mb-2 d-block"
src="images/get-on-google-play.png"
width="200px"
alt=""
/>
</a>
<a href="#">
<img
src="images/available-on-the-app-store.png"
width="200px"
alt=""
/>
</a>
<div class="socials mt-4">
<h5 class="text-white fw-bold mb-3">Connect with us</h5>
<div class="d-flex align-items-center">
<a href="#" target="_blank">
<img src="images/socials/facebook.svg" alt="" />
</a>
<a href="#" target="_blank">
<img src="images/socials/twitter.svg" alt="" />
</a>
<a href="#" target="_blank">
<img src="images/socials/instagram.svg" alt="" />
</a>
<a href="#" target="_blank">
<img src="images/socials/youtube.svg" alt="" />
</a>
<a href="#" target="_blank">
<img src="images/socials/linkedin.svg" alt="" />
</a>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 mb-4 mb-lg-0">
<h5 class="text-white fw-bold mb-3">Categories</h5>
<ul class="ps-0">
<li class="list-unstyled mb-2">
<a class="link-light" href="category.html">Mobile Phones</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="category.html">Electronics</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="category.html">Vehicles</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="category.html">Home and Living</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="category.html">Education</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="category.html"
>Sports and Outdoors</a
>
</li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-3 mb-4 mb-lg-0">
<h5 class="text-white fw-bold mb-3">Pages</h5>
<ul class="ps-0">
<li class="list-unstyled mb-2">
<a class="link-light" href="index.html">Home</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="ads.html">All Ads</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="about.html">About Us</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="contact.html">Contact Us</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="ad-details.html">Ad Details</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="category.html">Category</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="search.html">Search</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="login.html">Login</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="signup.html">Signup</a>
</li>
<li class="list-unstyled mb-2">
<a class="link-light" href="dashboard.html">Dashboard</a>
</li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<h5 class="text-white fw-bold mb-3">Our Location</h5>
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d3746527.4526794753!2d90.3443647!3d23.506657!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sbn!2sbd!4v1700420060104!5m2!1sbn!2sbd"
width="100%"
height="200"
class="border border-primary border-3"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
</div>
</div>
</div>
</div>
<!-- footer top end -->
<!-- footer bottom -->
<div
class="footer-bottom border-top border-primary border-2 py-3 bg-dark"
>
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-auto">
<a href="index.html">
<img src="images/logo-white.png" width="150px" alt="" />
</a>
</div>
<div class="col text-end">
<span class="text-white"
>© 2023
<a class="fw-bold link-light" href="index.html">AdZilla,</a> All
Rights Reserved.</span
>
</div>
</div>
</div>
</div>
<!-- footer bottom end -->
</footer>
<!-- footer section end -->
<!-- all js -->
<script src="js/jquery-3.7.1.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>