-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
764 lines (584 loc) · 29.7 KB
/
checkout.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
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
<!DOCTYPE html>
<html lang="en" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Store | Checkout</title>
<link rel="icon" href="images/favicon.png">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/css/intlTelInput.css">
</head>
<body>
<!-- Start Header -->
<header>
<div class="top-header d-flex align-items-center py-2">
<div class="container">
<div class="row">
<div class="col-6 col-md-4">
<a href="">
<img width="150" src="images/logo.png" alt="logo">
</a>
</div>
<div class="col-6 col-md-4">
<input type="text" class="form-control" placeholder="اكتب اسم المنتج للبحث عنه">
</div>
<div class="col-md-4 left-header d-flex align-items-center d-none d-lg-flex justify-content-end">
<a data-bs-toggle="offcanvas" href="#cart" role="button" aria-controls="offcanvasExample">
<span>السلة</span>
<i class="fa-solid fa-cart-shopping"></i>
</a>
<a data-bs-toggle="offcanvas" href="#login" role="button" aria-controls="offcanvasExample">
<span>الدخول</span>
<i class="fa-solid fa-user"></i>
</a>
<a href="">
<span>المفضلة</span>
<i class="fa-solid fa-heart"></i>
</a>
</div>
</div>
</div>
</div>
<div class="buttom-header">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container">
<!-- <a class="navbar-brand" href="#">Navbar</a> -->
<button class="navbar-toggler menu-icon" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div>
<button class="navbar-toggler menu-icon" type="button" data-bs-toggle="offcanvas" href="#cart" >
<i class="fa-solid fa-cart-shopping"></i>
</button>
<button class="navbar-toggler menu-icon" type="button" data-bs-toggle="offcanvas" href="#login" >
<i class="fa-solid fa-user"></i>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">الرئيسية</a>
</li>
<li class="nav-item">
<a class="nav-link" href="category.html">الحواسيب</a>
</li>
<li class="nav-item">
<a class="nav-link" href="category.html">الجوالات</a>
</li>
<li class="nav-item">
<a class="nav-link" href="category.html">الالكترونيات</a>
</li>
<li class="nav-item">
<a class="nav-link" href="category.html">الكاميرات</a>
</li>
<li class="nav-item">
<a class="nav-link" href="category.html">أجهزة الانذار</a>
</li>
<li class="nav-item">
<a class="nav-link" href="category.html">الاكسوارات</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<!-- End Header -->
<!-- Srart Bunner -->
<section class="bunner">
<h1 class="category-title"> إتمام الطلب</h1>
</section>
<!-- End Bunner -->
<section class="mt-5">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="user-info">
<h4 class="cart-product-title my-3">معلومات الشحن</h4>
<div>
<label for="" class="form-label">الاسم:</label>
<input type="text" class="form-control" placeholder="الرجاء ادخال الاسم">
</div>
<div class="mt-3">
<label for="" class="form-label">البريد الالكتروني:</label>
<input type="text" class="form-control" placeholder="الرجاء ادخال البريد الالكتروني">
</div>
<div class="mt-3">
<label for="" class="form-label"> رقم الهاتف:</label>
<input type="tel" id="phone" class="form-control" placeholder="الرجاء ادخال رقم الهاتف">
</div>
<div class="mt-3">
<label for="" class="form-label"> اسم البلد:</label>
<select class="form-select">
<option selected disabled>الرجاء اختيا رالدولة </option>
<option value="syria">سوريا</option>
<option value="turkey">تركيا</option>
<option value="turkey">تركيا</option>
<option value="turkey">تركيا</option>
<option value="turkey">تركيا</option>
<option value="turkey">تركيا</option>
</select>
</div>
<div class="mt-3">
<label for="" class="form-label"> اسم المدينة:</label>
<select class="form-select">
<option selected disabled>الرجاء اختيار المدينة </option>
<option value="syria">سوريا</option>
<option value="turkey">تركيا</option>
<option value="turkey">تركيا</option>
<option value="turkey">تركيا</option>
<option value="turkey">تركيا</option>
<option value="turkey">تركيا</option>
</select>
</div>
<div class="mt-3">
<label for="" class="form-label">تفاصيل السكن:</label>
<input type="text" class="form-control" placeholder="الرجاء ادخال العنوان الكامل">
</div>
<div class="mt-3">
<label for="" class="form-label"> ملاحظات حول الشحن:</label>
<textarea name="" id="" class="form-control" rows="5"></textarea>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row row-cols-1 row-min-card m-1">
<div class="col mini-card d-flex justify-content-between align-items-center px-3">
<p class="cart-product-title">
المنتج
</p>
<p class="cart-product-title">السعر</p>
<p class="cart-product-title">
الكمية
</p>
<p class="cart-product-title">الاجمالي</p>
</div>
<div class="col mini-card d-flex justify-content-between align-items-center px-3">
<div class="d-flex flex-column flex-md-row gap-2 align-items-center">
<img class="img-fluid" width="60px" src="images/products/7.jpg" alt="">
<p> سامسونغ S23 </p>
</div>
<p>250$</p>
<div class="btn-group btns-quantity-mini">
<button type="button" class="btn">+</button>
<button type="button" class="btn">1</button>
<button type="button" class="btn">-</button>
</div>
<p>500$</p>
</div>
<div class="col mini-card d-flex justify-content-between align-items-center px-3">
<div class="d-flex flex-column flex-md-row gap-2 align-items-center">
<img class="img-fluid" width="60px" src="images/products/7.jpg" alt="">
<p> سامسونغ S23 </p>
</div>
<p>250$</p>
<div class="btn-group btns-quantity-mini">
<button type="button" class="btn">+</button>
<button type="button" class="btn">1</button>
<button type="button" class="btn">-</button>
</div>
<p>500$</p>
</div>
<div class="col mini-card d-flex justify-content-between align-items-center px-3">
<div class="d-flex flex-column flex-md-row gap-2 align-items-center">
<img class="img-fluid" width="60px" src="images/products/7.jpg" alt="">
<p> سامسونغ S23 </p>
</div>
<p>250$</p>
<div class="btn-group btns-quantity-mini">
<button type="button" class="btn">+</button>
<button type="button" class="btn">1</button>
<button type="button" class="btn">-</button>
</div>
<p>500$</p>
</div>
</div>
<div class="d-flex justify-content-between">
<div class="code d-flex mt-3 gap-2">
<input type="text" class="form-control w-50">
<button class="btn btn-primary">تطبيق الكوبون</button>
</div>
<div class="d-flex total-price align-items-center">
الاجمالي: 2500$
</div>
</div>
<div class="payments mt-5">
<div class="">
<input type="radio" name="payment">
<label for="" class="form-label">الدفع باستخدام البيبال</label>
</div>
<div class="">
<input type="radio" name="payment">
<label for="" class="form-label">الدفع باستخدام الفيزا كارد</label>
</div>
<div class="">
<input type="radio" name="payment">
<label for="" class="form-label">الدفع عن طريق حوالة بنكية مباشرة </label>
</div>
<div class="master-card mt-3">
<h4 class="cart-product-title">يمكنكم الدفع بشكل امن عن طريق الفيزا كارد</h4>
<div class="position-relative">
<label for="" class="form-label">رقم البطاقة :</label>
<input type="text" class="form-control">
<img class="position-absolute" src="images/payments.png" alt="">
</div>
<div class="d-flex mt-3 gap-3">
<div class="w-100">
<label for="" class="form-label"> تاريح الانتهاء :</label>
<input type="text" class="form-control" placeholder="سنة / شهر">
</div>
<div class="w-100">
<label for="" class="form-label"> رمز الأمان :</label>
<input type="text" class="form-control" placeholder="CVC">
</div>
</div>
<button class="btn btn-danger w-100 mt-3">إتمام الطلب</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Start Footer -->
<footer>
<div class="container">
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-4">
<div class="col f1 mb-3">
<img class="w-75" src="images/logo-white.png" alt="logo">
<p class="text-white">
متجرنا يهتم بالجوده والخامه النظيفه ونسعى الى توفير كل جديد وكل ما يرضي عملائنا
</p>
<ul class="navbar-nav text-white">
<li><i class="fa-solid fa-location-dot"></i>تركيا - اسطنبول</li>
<li><i class="fa-solid fa-phone"></i> 05519665883 </li>
<li><i class="fa-solid fa-envelope""></i>[email protected]</li>
</ul>
</div>
<div class="col f2 mb-3">
<h3>أهم الروابط</h3>
<ul class="navbar-nav ">
<li><a href="">الرئيسية</a></li>
<li><a href="">الرئيسية</a></li>
<li><a href="">الرئيسية</a></li>
<li><a href="">الرئيسية</a></li>
<li><a href="">الرئيسية</a></li>
</ul>
</div>
<div class="col f3 mb-3">
<h3> التصنيفات</h3>
<ul class="navbar-nav">
<li><a href="">جوالات</a></li>
<li><a href="">الحواسيب</a></li>
<li><a href="">الساعات</a></li>
<li><a href="">الاكسسوارات</a></li>
<li><a href="">الاكسسوارات</a></li>
</ul>
</div>
<div class="col f4 mb-3">
<h3>النشرة البريدية</h3>
<p>
متجرنا يهتم بالجوده والخامه النظيفه ونسعى الى توفير كل جديد وكل ما يرضي عملائنا
</p>
<form action="">
<input type="text" placeholder="الرجاء ادخال البريد" class="form-control mb-3">
<button class="btn btn-danger w-100">اشتراك</button>
</form>
</div>
</div>
<div class="row row-cols-1 row-cols-md-2 mt-3">
<div class="col">
<img src="images/payments.png" alt="">
</div>
<div class="col d-flex justify-content-end">
<p class="text-white text-center">جميع الحقوق محفوظة © 2025 لمتجر السلام للأدوات الالكترونية</p>
</div>
</div>
</div>
</footer>
<!-- End Footer -->
<!--Start Quick View Product -->
<div class="modal fade" id="quick-product" aria-hidden="true" aria-labelledby="exampleModalToggleLabel" tabindex="-1">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalToggleLabel">سامسونغ S23</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="row row-cols-1 row-cols-md-2">
<div class="col">
<img class="img-fluid" src="images/products/7.jpg" alt="سامسونغ S23">
<button class="btn btn-primary w-100">كافة التفاصيل</button>
</div>
<div class="col">
<img width="40%" class="mt-3" src="images/samsung.png" alt="">
<h1 class="modal-title fs-5 my-3">سامسونغ S23 لون فضي</h1>
<p class="product-description">
ظام التشغيل: اندرويد 13.0، تقنية الشبكة الخلوية: شبكة الجيل الخامس 5G سعة تخزين الذاكرة: 512 جيجابايت تقنيات الاتصال: بلوتوث، واي فاي، USB، تقنية NFC الاتصال قريب المدى، اللون
</p>
<div class="quick-reviews mb-3">
<span>تقييمات المستخدمين:</span>
<div class="stars mb-2 d-inline-flex">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
<div class="price mb-3">
<span>السعر 250$</span>
<span>400$</span>
</div>
<div class="btns d-flex gap-3">
<div class="btn-group btns-quantity">
<button type="button" class="btn">+</button>
<button type="button" class="btn">1</button>
<button type="button" class="btn">-</button>
</div>
<div class="d-flex gap-1 add-btn">
<button class="btn btn-danger">إضافة الى السلة</button>
<button class="btn btn-success">شراء الآن</button>
</div>
</div>
<hr>
<div class="gategory mb-3">
<span>التصنيفات:</span>
<a href="">جوالات سامسونغ</a>
</div>
<div class="share">
<span>المشاركة:</span>
<div class="sahre-icons d-inline-flex gap-2">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-whatsapp"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-x-twitter"></i>
<i class="fa-brands fa-linkedin-in"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End Quick View Product -->
<!-- Cart -->
<div class="offcanvas offcanvas-end" tabindex="-1" id="cart" aria-labelledby="offcanvasExampleLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="cart">سلة المشتريات</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<div class="row row-cols-1 row-min-card m-1">
<div class="col mini-card d-flex justify-content-between align-items-center">
<img class="img-fluid w-25" src="images/products/7.jpg" alt="">
<p> سامسونغ S23 </p>
<div class="btn-group btns-quantity-mini">
<button type="button" class="btn">+</button>
<button type="button" class="btn">1</button>
<button type="button" class="btn">-</button>
</div>
</div>
<div class="col mini-card d-flex justify-content-between align-items-center">
<img class="img-fluid w-25" src="images/products/5.jpg" alt="">
<p> سامسونغ S23 </p>
<div class="btn-group btns-quantity-mini">
<button type="button" class="btn">+</button>
<button type="button" class="btn">1</button>
<button type="button" class="btn">-</button>
</div>
</div>
<div class="col mini-card d-flex justify-content-between align-items-center">
<img class="img-fluid w-25" src="images/products/6.jpg" alt="">
<p> سامسونغ S23 </p>
<div class="btn-group btns-quantity-mini">
<button type="button" class="btn">+</button>
<button type="button" class="btn">1</button>
<button type="button" class="btn">-</button>
</div>
</div>
<div class="col mini-card d-flex justify-content-between align-items-center">
<img class="img-fluid w-25" src="images/products/8.jpg" alt="">
<p> سامسونغ S23 </p>
<div class="btn-group btns-quantity-mini">
<button type="button" class="btn">+</button>
<button type="button" class="btn">1</button>
<button type="button" class="btn">-</button>
</div>
</div>
</div>
<div class="d-flex flex-column gap-3">
<p class="alert alert-danger p-3 my-3 text-center">مجموع المنتجات 250$ فقط لا غير </p>
<button class="btn btn-primary w-100">عرض السلة</button>
<button class="btn btn-danger w-100">اتمام الطلب</button>
</div>
</div>
</div>
<!--End Cart -->
<!-- Filter -->
<div class="offcanvas offcanvas-end" tabindex="-1" id="filter" aria-labelledby="offcanvasExampleLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="cart"> الفلترة</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<div class="filter-section sticky-lg-top">
<h4 class="filter-title">فلترة بالبحث</h4>
<input type="text" class="form-control" placeholder="أكتب اسم المنتج للبحث عنه">
<select name="" id=""class="form-select mt-3">
<option value="">حواسيب</option>
<option value="">حواسيب</option>
<option value="">حواسيب</option>
<option value="">حواسيب</option>
<option value="">حواسيب</option>
<option value="">حواسيب</option>
</select>
<hr>
<h4 class="filter-title">فلترة بالتصنيف</h4>
<div class="filter-radio d-flex flex-column gap-1">
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
</div>
<h4 class="filter-title mt-3">فلترة بنوع المعالج</h4>
<div class="filter-radio d-flex flex-column gap-1">
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
<div>
<input name="category" type="radio" class="form-check-input">
<label for="" class="form-label">سامسونغ</label>
</div>
</div>
</div>
</div>
</div>
<!--End Filter -->
<!-- Login -->
<div class="offcanvas offcanvas-start" tabindex="-1" id="login" aria-labelledby="offcanvasExampleLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="login"> تسجيل الدخول</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<div class="mini-login">
<form>
<div class="mb-3">
<label for="email" class="form-label">اسم المستخدم أو البريد </label>
<input type="email" class="form-control" id="email" aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="password" class="form-label">كلمة المرور</label>
<input type="password" class="form-control" id="password">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">تذكر بياناتي</label>
</div>
<button type="submit" class="btn btn-primary w-100">تسجيل الدخول</button>
</form>
<div class="alert alert-danger my-3 text-center">
<a href="">إنقر هنا في حال نسيت كلمة المرور</a>
</div>
<hr>
<div class="text-center mt-5">
<i class="fa-regular fa-user fa-5x"></i>
<p>لايوجد لديك حساب ؟؟</p>
<a href="" class="btn btn-danger w-100 text-white">إنشاء حساب جديد</a>
</div>
</div>
</div>
</div>
<!--End Login -->
<!-- intl-tel-input JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/intlTelInput.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/utils.js"></script>
<script>
const input = document.querySelector("#phone");
window.intlTelInput(input, {
initialCountry: "auto",
geoIpLookup: function(callback) {
fetch('https://ipinfo.io/json?token=<YOUR_TOKEN>', { headers: { 'Accept': 'application/json' }})
.then((resp) => resp.json())
.then((resp) => { callback(resp.country); })
.catch(() => { callback('us'); });
},
utilsScript: "https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/utils.js",
// تفعيل خيار البحث
allowDropdown: true,
autoHideDialCode: true,
autoPlaceholder: "polite",
dropdownContainer: document.body,
excludeCountries: ["us"],
formatOnDisplay: true,
hiddenInput: "full_number",
nationalMode: true,
separateDialCode: true,
preferredCountries: ['us', 'gb', 'ca'],
customContainer: "intl-tel-input separate-dial-code",
separateDialCode: true,
initialCountry: "auto",
excludeCountries: ["af", "al"],
geoIpLookup: function(callback) {
fetch("https://ipinfo.io", {
headers: { "Accept": "application/json" }
}).then((resp) => resp.json()).then((resp) => {
const countryCode = (resp && resp.country) ? resp.country : "us";
callback(countryCode);
});
},
utilsScript: "https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/utils.js",
// إضافة البحث
placeholderNumberType: "MOBILE",
separateDialCode: true
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/script.js"></script>
</body>
</html>