-
Notifications
You must be signed in to change notification settings - Fork 1
/
payment.html
628 lines (567 loc) · 25 KB
/
payment.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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout</title>
<link rel="stylesheet" type="text/css" href="./payment.css">
<link rel="stylesheet" href="/footer.css">
<link rel="stylesheet" href="/navbar.css">
<link href='https://unpkg.com/[email protected]/icons/css/search.css' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css2?family=Metrophobic&family=Poppins:wght@100;200;300;500;600;700&display=swap" rel="stylesheet">
<link rel = "icon" href = "https://www.appengine.ai/uploads/images/profile/logo/boAt-AI.png" type = "image/x-icon">
</head>
<body id="PAYMENTBODY">
<div id="announcement-bar">
<header>Navigate your life on our <b>largest round HD display - 1.52"</b>. Buy <b>Lunar Vista</b> now!</header>
</div>
<!-- navbar -->
<div id="navbar">
<div class="logo-menu">
<div class="nav-container">
<input class="checkbox" type="checkbox" name="" id="" />
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<div class="menu-items">
<li><button type="button" class="collapse-menu">Categories</button>
<div class="content">
<a href="#">True Wireless Earbuds</a>
<a href="#">Wired Headphones</a>
<a href="#">Trimmers</a>
<a href="">Superhero Collections</a>
<a href="">Neckbands</a>
<a href="">Wired Earphones</a>
<a href="">Chargers</a>
<a href="">Trebel for Women</a>
</div>
</li>
<li><a href="">Daily Deals</a></li>
<li><a href="">Gift with boAt</a></li>
<li><a href="">Bulk Orders</a></li>
<li><button type="button" class="collapse-menu">More</button>
<div class="content">
<a href="#">Do What Floats your boAt</a>
<a href="#">Blogs</a>
<a href="#">Corporate Orders</a>
<a href="">Earn ₹100</a>
<a href="">Careers</a>
<a href="">Social Responsibilities</a>
<a href="">Store Locator</a>
</div>
</li>
<li><a href="">Login</a></li>
<li><a href="">Cart</a></li>
</div>
</div>
<div class="homepage-logo">
<a href="index.html"><img src="https://www.boat-lifestyle.com/cdn/shop/files/boAt_logo_small_3067da8c-a83b-46dd-b28b-6ef1e16ccd17_small.svg?v=1693549434" alt="image"></a>
</div>
<div class="category-menu">
<div class="dropdown">
<button class="dropbtn">Categories
<i class="arrow down"></i>
</button>
<div class="dropdown-content">
<div class="row">
<div class="column">
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/dropdown-TWS_100x.png?v=1684827062" alt="image">True Wireless Earbuds</a>
<a href="/products.html"><img class="menu-image" src=https://www.boat-lifestyle.com/cdn/shop/collections/bassheads-Wired-Headphones_0877b292-85ab-42ed-a055-26e1c246be73_100x.png?v=1684827787"" alt="image">Wired Headphones</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/MISFIT-shop_100x.png?v=1684827994" alt="image">Trimmers</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/imageedit_1_7038353159_100x.png?v=1684828134" alt="image">SuperHero Collection</a>
</div>
<div class="column">
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/Neckbands_06214c1a-5e30-48ea-ac14-4a6bff679f48_100x.png?v=1684828287" alt="imgae">Neckbands</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/latest_background_b4f773ca-05d9-41cc-a7cf-3104993ae895_100x.png?v=1684827816" alt="image">Wired Earphones</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/Charger_100x.png?v=1684828017" alt="image">Chargers</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/New-Category-Banners_with-Trebal_09_100x.png?v=1684828168" alt="image">Trebel for Women</a>
</div>
<div class="column">
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/smartwatches_100x.png?v=1684827668" alt="image">Smart Watches</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/Collections_5baef8f1-a67a-40a5-a537-4258c6caae6a_100x.png?v=1684827849" alt="image">Soundbars</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/powerbank_100x.png?v=1684828045" alt="image">Power Banks</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/dropdown-limited-edition_100x.png?v=1684828200" alt="image">Limited Edition</a>
</div>
<div class="column">
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/Rockerz_100x.png?v=1684827714" alt="image">Wireless Headphones</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/Immortal_category_Image_100x.png?v=1684827903" alt="image">Gaming Headphones</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/cables_cd468fe0-9b41-4eef-b686-0785c6478534_100x.png?v=1684828071" alt="image">Cabels</a>
</div>
<div class="column">
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/box-5_100x.png?v=1684827751" alt="image">Wireless Speakers</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/sound_bar_4f111a6a-2482-41c8-87f2-db7e0ee19e69_1_100x.webp?v=1684827961" alt="image">Party Speakers</a>
<a href="/products.html"><img class="menu-image" src="https://www.boat-lifestyle.com/cdn/shop/collections/Car-accessories_07e4e533-2b59-4597-aa3f-110552541f0f_100x.png?v=1684828103" alt="image">Car Accessories</a>
</div>
</div>
</div>
</div>
<a href="#home">Daily Deals</a>
<a href="#news">Gift With boAt</a>
<a href="#news">Bulk Orders</a>
<div class="more-dropdown">
<button class="more-dropbtn">More
<i class="arrow down"></i>
</button>
<div class="more-dropdown-content">
<a href="#">Do What Floats your boAt</a>
<a href="#">Blogs</a>
<a href="#">Corporate Orders</a>
<a href="#">Earn ₹100</a>
<a href="#">Careers</a>
<a href="#">Social Responsibility</a>
<a href="#">Store Locator</a>
</div>
</div>
</div>
</div>
<!-- searchbox and login and cart icons -->
<div id="searchbox-carticons">
<div class="topDiv">
<input class="searchBar" type="text" name="search" placeholder="Search">
<button type="submit" class="button">
<i class="gg-search"></i>
</button>
</div>
<div class="login-cart-icon">
<a href="signin.html"> <img class="loginimage" src="https://cdn.shopify.com/s/files/1/0057/8938/4802/files/Profile-1.png?v=1663762989" alt="cart"></a>
<a href="cart.html"> <img class="cartimage" src="https://cdn0.iconfinder.com/data/icons/commerce-outline/512/shopping_bag-512.png" alt="profile"></a>
</div>
</div>
</div>
<header id="PaymentHeader">
<!-- <div id="DIVPOP">
<h3 id="H3PAYMENT">Payment Successfull</h3>
</div> -->
<div class="Paymentcontainer">
<div class="leftpaymentdiv">
<h3 id="paymentH3">BILLING ADDRESS</h3>
<form id="paymentFormLeft">
Full name
<input id="paymentname" type="text" name="" placeholder="Enter name">
Mobile No
<input id="paymentEMAIL" type="number" name="" placeholder="Enter Number">
Address
<input id="paymentAddress" type="text" name="" placeholder="Enter Address">
City
<input id="paymentCity" type="text" name="" placeholder="Enter City">
<div id="paymentState">
<label>
State
<select id="paymentSelect">
<option>Choose State....</option>
<option>Maharashtra</option>
<option>Andhra Pradesh</option>
<option>Rajasthan</option>
<option>Uttar Pradesh</option>
<option>Madhya Pradehs</option>
<option>Hariyana</option>
<option>Uttarakhand</option>
</select>
</label>
<label>
Zip Code
<input id="paymentZip" type="number" name="" placeholder="Zip code">
</label>
</div>
<input id="SubmitPayment" type="submit" name="" value="Submit">
</form>
</div>
<div class="rightpaymentdiv">
<div id="TotalPrice">
<div id="ChildTotalPrice">
<h4 class="H4TOTAl">Order Value :- </h4>
</div>
<div id="SecoundChildPrice">
</div>
</div>
<h3 id="paymentH3">PAYMENT</h3><br>
<input id="CheckBOX1" type="checkbox" onclick="CHECKBOX2()" name="COD" value="COD"> COD<br>
<input id="CheckBOX2" type="checkbox" onclick="CHECKBOX1()" name="CARD" value="CARD">
Card Payment<br>
<form id="paymentFormRight">
<img src="https://pngimg.com/d/visa_PNG17.png" width="100">
<img src="https://www.ucobank.com/images/select.png" width="50">
<br><br>
Credit card number
<input id="paymentNUM" type="number" name="" placeholder="Enter card number">
Exp month
<input id="paymentMONTH" type="number" name="" placeholder="Enter Month">
<div id="paymentCARDD">
<label>
Exp year
<select id="paymentSelect">
<option>Choose Year....</option>
<option>2023</option>
<option>2024</option>
<option>2025</option>
<option>2026</option>
<option>2027</option>
<option>2028</option>
<option>2029</option>
</select>
</label><br>
<label>
CVV
<input id="paymentCVV" type="number" name="" placeholder="CVV">
</label>
</div>
<input id="paymentCLICK" type="submit" name="" value="Make Payment">
</form>
<div id="PAYMENTDIVOTP">
<input id="PAYMENTOTP" type="number" placeholder=" Enter Otp">
<button id="PAYMENTBTN" onclick="PAYMENTBTN()">Submit</button>
</div>
<button id="paymentC" onclick="PROCEEDTOPAYMENT()">Confirm Order</button>
</div>
</div>
</header>
<!-- footer -->
<div class="headfooterDiv">
<div class="ChiledfooterDiv">
<img class="imgfooter" src="https://cdn.shopify.com/s/files/1/0057/8938/4802/files/boAt_logo.svg">
<h2 class="h2footer">Subscribe to our email alerts!</h2>
<input class="inputfooter" type="email" placeholder=" Enter your Email >">
</div>
<div class="Chiled2footerDiv">
<h4 class="h4footer">Shop</h4><br>
<p class="pfooter">
<!-- True Wireless Earbuds<br> Wireless Headphones <br><br> Wired Headphones <br>Wireless Speakers <br></p> -->
<p class="pfooter"> Audio <br>Mobile Accessories <br>Smart Watches <br>TRebel <br>Misfit<br>Gift Card <br>Earn ₹100</p>
</div>
<div class="Chiled3footerDiv">
<h4 class="h4footer">Shop</h4><br>
<p class="pfooter">
Track Your Order<br>
Warranty & Support<br>
Return Policy<br>
Service Centers<br>
Bulk Orders<br>
FAQs<br>
Why Buy Direct<br>
</p>
</div>
<div class="Chiled4footerDiv">
<h4 class="h4footer">Company</h4>
<p class="pfooter"><br>
News<br>
Read Our Blog<br>
Careers<br>
Security<br>
Investor Relations<br>
Social Responsibility<br>
Warranty Policy<br>
About boAt
</p>
</div>
</div>
<div id="bodyFooterDiv">
<div class="bodyFooterChildDiv1">
<div class="bodyFooterDecDiv1" >
<h2>True Wireless Earbuds</h2><br>
<h4>Shop by Features</h4><br>
<p>
Long Playback Earphone<br>
Clear Calling Earphone<br>
Noise Cancellation Earphone<br>
</p>
<h4>Shop by Price </h4><br>
<p>
Earbuds Under 2000<br>
Earbuds Under 3000<br>
Earbuds Under 4000<br>
Earbuds Under 5000<br>
Earbuds Above 5000<br>
Earbuds Under 1000<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Wired Headphones</h2><br>
<h4>Shop by Features</h4><br>
<p>
Wired Headphones with Mic<br>
Headphones with Mic for PC<br>
Noise Cancellation Earbuds<br>
</p>
<h4>Shop by Price </h4><br>
<p>
Earbuds Under 1000<br>
Earbuds Under 2000<br>
Earbuds Under 3000<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Smart Watches</h2><br>
<h4>Shop by Features</h4><br>
<p>
Bluetooth Calling Smartwatches<br>
Amoled Display Smartwatch<br>
Round Dial Smartwatch<br>
Fitness Tracker Smartwatch<br>
Smartwatch<br>
Big Display Smartwatch<br>
Shop by Price<br>
</p>
<h4>Shop by Price</h4><br>
<p>
Smartwatch Under 1000<br>
Smartwatch Under 2000<br>
Smartwatch Under 3000<br>
Smartwatch Under 5000<br>
Smartwatch Above 5000<br>
Smartwatch Under 4000<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Trebel Range</h2><br>
<h4>Shop by Features</h4><br>
<p>
Smartwatch for Women<br>
Earbuds for Women<br>
Neckband for Women<br>
Earphone for Women<br>
Headphone for Women<br>
</p>
</div>
</div>
<div class="bodyFooterChildDiv1">
<div class="bodyFooterDecDiv1" >
<h2>Wireless Earphones</h2><br>
<h4>Shop by Features</h4><br>
<p>
Long Playback Earphone<br>
Clear Calling Earphone<br>
Shop by Price<br>
Noise Cancellation Earphone
</p>
<h4>Shop by Price</h4><br>
<p>
Earbuds Under 4000<br>
Earbuds Under 5000<br>
Earbuds Above 5000<br>
Earbuds Under 1000<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Gaming Headphones</h2><br>
<h4>Shop by Features</h4><br>
<p>
Gaming Headphones with Mic<br>
Low Latency Headphone<br>
RGB Light Headphones<br>
Headphone for PC Gaming<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Trimmers</h2><br>
<h4>Shop by Features </h4><br>
<p>
Grooming Kit for Men<br>
Beard Styler<br>
Trimmer for Men<br>
Shop by Price<br>
</p>
<h4>Shop by Price</h4><br>
<p>
Smartwatch Under 1000<br>
Smartwatch Under 2000<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Powerbanks</h2><br>
<h4>Shop by Features</h4><br>
<p>
Power Bank 10000mah<br>
Power Bank 20000mah<br>
Mobile Power Bank<br>
Fast Charging Power Bank<br>
Power Bank for iPhone<br>
</p>
<h4>Shop by Price</h4><br>
<p>
Smartwatch Under 1000<br>
Smartwatch Under 2000<br>
Smartwatch Under 3000<br>
Smartwatch Under 24000<br>
</p>
</div>
</div>
<div class="bodyFooterChildDiv1">
<div class="bodyFooterDecDiv1" >
<h2>Wired Earphones</h2><br>
<h4>Shop by Features</h4><br>
<p>
Wired Earphones with Mic<br>
<!-- Clear Calling Earphone<br> -->
<!-- Noise Cancellation Earphone<br> -->
</p>
<h4>Shop by Price</h4><br>
<p>
Earbuds Under 1000<br>
Earbuds Under 500<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Wireless Speakers</h2><br>
<h4>Shop by Features</h4><br>
<p>
Portable Speakers<br>
Long Playback Speakers<br>
Waterproof Bluetooth Speaker<br>
Party Speaker with RGB Lights<br>
Speaker with Karaoke Mic<br>
</p>
<h4>Shop by Price</h4><br>
<p>
Earbuds Under 1000<br>
Earbuds Under 2000<br>
Earbuds Under 3000<br>
Bluetooth Speakers Under 8000<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Limited Editions</h2><br>
<h4>Shop by Features</h4><br>
<p>
Limited Edition Earbuds<br>
Limited Editions Smart Watch<br>
Limited Editions Earphone<br>
Limited Editions Headphones<br>
Limited Edition Speakers<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Chargers </h2><br>
<h4>Shop by Features</h4><br>
<p>
Wireless Charger<br>
Type C Charger<br>
Fast Charger<br>
USB Charger<br>
Micro USB Charger<br>
Type C Adapter<br>
</p>
</div>
</div>
<div class="bodyFooterChildDiv1">
<div class="bodyFooterDecDiv1" >
<h2>Wireless Headphones</h2><br>
<h4>Shop by Features</h4><br>
<p>
Noise Cancelling Headphones<br>
Wireless Gaming Headphone<br>
Long Playback Headphones<br>
Shop by Price<br>
</p>
<h4>Shop by Price</h4><br>
<p>
Wireless Headphones Under 1000
Wireless Headphones Under 2000
Wireless Headphones Under 3000
Wireless Headphones Under 4000
Wireless Headphones Above 4000
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Soundbars </h2><br>
<h4>Shop by Features</h4><br>
<p>
Dolby Soundbars<br>
Soundbar with Wireless Subwoofer<br>
Soundbar with Wired Subwoofer<br>
Alexa Enabled Soundbar<br>
Bluetooth Soundbar<br>
Shop by Price<br>
</p>
<h4>shop by Price</h4>
<p>
Soundbars Under 10000<br>
Soundbars Under 20000<br>
Soundbars Under 3000<br>
Soundbars Under 5000<br>
Soundbars Above 20000<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Car Accessories </h2><br>
<h4>Shop by Features</h4><br>
<p>
Car Charger <br>
Aux Cable for Car<br>
<!-- Shop by Price<br> -->
</p>
<h4>Shop by Price</h4><br>
<p>
Smartwatch Under 500<br>
Smartwatch Under 500<br>
</p>
</div>
<div class="bodyFooterDecDiv1" >
<h2>Cables </h2><br>
<h4>Shop by Features</h4><br>
<p>
C Type Cable<br>
Micro USB Cable<br>
Smart Watch Charging Cable<br>
USB C to C Cable<br>
C Type to Micro USB<br>
Lightning Cable<br>
</p>
</div>
</div>
<div class="FootDiv">
<div class="FootDivChild1">
<h1 style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;" >
Let's get social
</h1>
<img src="https://cdn.worldvectorlogo.com/logos/fb-2.svg">
<img src="https://creazilla-store.fra1.digitaloceanspaces.com/icons/7911121/twitter-icon-md.png">
<img src="https://cdn.worldvectorlogo.com/logos/instagram-glyph-1.svg">
<img src="https://cdn-icons-png.flaticon.com/512/48/48968.png">
<img src="https://cdn.worldvectorlogo.com/logos/linkedin-icon-1.svg">
</div>
<div class="FootDivChild2">
<h2>Privacy Policy . Terms & Conditions</h2>
</div>
<div class="FootDivChild3">
<h4 style="color: rgb(75, 93, 99);">© 2023 Imagine Marketing Limited. All Rights Reserved.
For queries contact us: Manager, Imagine Marketing Limited Unit no. 204 & 205, 2nd floor, D-wing & E-wing,
Corporate Avenue, Andheri Ghatkopar Link Road, Mumbai, Maharashtra-400093, India
</h4>
</div>
</div>
</div>
</body>
</html>
<script src="./payment.js"></script>
<script>
var coll = document.getElementsByClassName("collapse-menu");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
<script src="./footer.js"></script>
<script>
document.querySelector(".button").addEventListener("click",
function (){
// var target=event.target
target=event.preventDefault()
var val=document.querySelector(".searchBar").value
if(val==="earbuds"){
window.location.href="/products.html"
}else if(val==="headphones"){
window.location.href="/products.html"
}
console.log(val)
})
</script>