-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1055 lines (922 loc) · 42 KB
/
index.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
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- Meta Tags -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Share/Embed Content -->
<meta name="author" content="SF18">
<meta name="msapplication-TileColor" content="#141518">
<meta name="theme-color" content="#141518">
<meta charset="UTF-8">
<meta name="viewport" content="">
<meta name="description" content="Your platform to meet the world and everyone in between.">
<meta name="keywords" content="twixxl">
<meta property="og:title" content="" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Your platform to meet the world and everyone in between." />
<meta property="og:site_name" content="twixxl.com">
<meta itemprop="name" content="">
<meta property="og:image" content="https://imgur.com/i9PGame.png"/>
<meta itemprop="description" content="">
<meta name="twitter:title" content="twixxl">
<meta name="twitter:description" content="Your platform to meet the world and everyone in between.">
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no" />
<meta charset="web-link" />
<link rel="icon" href="assets/img/New_twixxl Logo_Rounded.svg">
<link rel="shortcut icon" id="favicon" href="assets/img/New_twixxl Logo_Rounded.svg">
<link rel="icon" type="image/png" href="assets/img/New_twixxl Logo_Rounded.svg">
<link rel="icon" href="assets/img/New_twixxl Logo_Rounded.svg">
<!-- End of Meta Tags -->
<!-- Website title -->
<title>Welcome - twixxl</title>
<!-- End of website title -->
<head>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="./assets/vendor/aos/aos.css" rel="stylesheet">
<link href="./assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="./assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="./assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="./assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="./assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="./assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/@srexi/purecounterjs/dist/purecounter_vanilla.js"></script>
<!-- Template Main CSS File -->
<link href="./assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<div class="settings" id="settings" data-aos="zoom-out">
<div style="padding: 1.5rem;">
<div>
<span class="closebtn" onclick="settings.style.display='none';">×</span>
<h1>Settings</h1>
<p>Configure the settings to your liking.</p>
</div>
<div class="theme-settings">
<h1>Light / Dark</h1>
<div id="darkmode" class="darkmode-switch"><label class="switch">
<input type="checkbox" id="checkBox" name="theme" >
<span class="slider"></span>
</label> <span class="recommended">Recommended</span></div>
</div>
<div class="language">
<h1>Language</h2>
</div>
<div class="language">
<div class="select-menu active">
<div class="select-btn">
<span class="sBtn-text">Select your language</span>
<i class="bx bx-chevron-down"></i>
</div>
<ul class="options">
<li class="option">
<span class="option-text">English</span>
</li>
<li class="option">
<span class="option-text">Arabic</span>
</li>
<li class="option">
<span class="option-text">Hindi</span>
</li>
<li class="option">
<span class="option-text">French</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="alert" id="alert" data-aos="zoom-out">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
<strong>Warning!</strong> Still under development, Coming soon!
</div>
<header id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex align-items-center justify-content-between">
<div class="logo">
<h1><a href="index"><img src="/assets/img/New_twixxl Logo_Rounded.svg" alt="" class="img-fluid"> <span>twixxl</span></a></h1>
</div>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#features">Features</a></li>
<li><a class="nav-link scrollto" href="#gallery">Gallery</a></li>
<li><a class="nav-link scrollto" href="#team">Team</a></li>
<li><a class="nav-link scrollto" href="#pricing">Pricing</a></li>
<li><a class="nav-link scrollto" href="#download">Download</a></li>
<li class="dropdown"><a href="#"><span>More</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a style="cursor:pointer;" onclick="prefrence()" >Settings</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
</ul>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-7 pt-5 pt-lg-0 order-2 order-lg-1 d-flex align-items-center">
<div data-aos="zoom-out">
<h1>Welcome to, <span>twixxl</span></h1>
<h2>Your platform to meet the world and everyone in between.</h2>
<div class="text-center text-lg-start">
<a class="btn-get-started scrollto" onclick="document.getElementById('id01').style.display='block'" style="width:auto;" id="open-modal-button"><span>Get Started</span> <i class="bi bi-box-arrow-up-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 order-1 order-lg-2 hero-img" data-aos="zoom-out" data-aos-delay="300">
<img src="assets/img/twixxl app.png" class="img-fluid animated" alt="">
</div>
</div>
<a href="#about">
<div class="mouse" data-aos="zoom-out" >
<div class="roll"></div>
<div class="rollshadow"></div>
</div>
</a>
</div>
<svg class="hero-waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 28 " preserveAspectRatio="none">
<defs>
<path id="wave-path" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z">
</defs>
<g class="wave1">
<use xlink:href="#wave-path" x="50" y="3" fill="rgba(255,255,255, .1)">
</g>
<g class="wave2">
<use xlink:href="#wave-path" x="50" y="0" fill="rgba(255,255,255, .2)">
</g>
<g class="wave3">
<use xlink:href="#wave-path" x="50" y="9" fill="var(--bg)">
</g>
</svg>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="row">
<div class="col-xl-5 col-lg-6 video-box d-flex justify-content-center align-items-stretch" data-aos="fade-right">
<a class="venobox play-btn mb-4" style="cursor: pointer;" onclick="document.getElementById('about-vid').style.display='block'" id="open-vid-button" target="_blank" data-vbtype="video" data-autoplay="true"></a>
</div>
<div class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5" data-aos="fade-left">
<h3>What is twixxl?</h3>
<p>Twixxl is your platform to meet the world and everyone in between. Our services offer completely end-to-end encrypted messaging and call functionality between users. It's a combination of Twitter and Discord.</p>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<div class="icon"><i class="bx bx-lock"></i></div>
<h4 class="title"><a href="">Security</a></h4>
<p class="description">We take your security and privacy very seriously. All communications and transmissions on our services are encrypted. We keep no logs either.</p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<div class="icon"><i class="bx bx-server"></i></div>
<h4 class="title"><a href="">Servers</a></h4>
<p class="description">Twixxl has a server infrastructure that spans multiple locations around the world, this ensures that you always receive the highest speeds and most stable connections possible.</p>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Features</h2>
<p>WHY YOU'LL LOVE twixxl</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="50">
<i class="ri-video-line" style="color: #ffbb2c;"></i>
<h3><a href="">Video</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<i class="ri-bar-chart-box-line" style="color: #5578ff;"></i>
<h3><a href="">Analytics</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="150">
<i class="bi bi-chat-dots" style="color: #e80368;"></i>
<h3><a href="">Chat</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<i class="ri-paint-brush-line" style="color: #e361ff;"></i>
<h3><a href="">Customizable</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="250">
<i class="ri-database-2-line" style="color: #47aeff;"></i>
<h3><a href="">Larger uploads</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<i class="bi bi-telephone-forward" style="color: #ffa76e;"></i>
<h3><a href="">Call</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="350">
<i class="bi bi-ui-radios" style="color: #11dbcf;"></i>
<h3><a href="">Position/Roles</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="400">
<i class="bi bi-patch-check" style="color: #4233ff;"></i>
<h3><a href="">Badges</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="450">
<i class="ri-server-line" style="color: #b2904f;"></i>
<h3><a href="">Servers</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="500">
<i class="ri-disc-line" style="color: #b20969;"></i>
<h3><a href="">Music</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="550">
<i class="ri-base-station-line" style="color: #ff5828;"></i>
<h3><a href="">Better connection</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="600">
<i class="ri-lock-line" style="color: #29cc61;"></i>
<h3><a href="">Encryption</a></h3>
</div>
</div>
</div>
</div>
</section><!-- End Features Section -->
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts">
<div class="container">
<div class="row" data-aos="fade-up">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-download"></i>
<span data-purecounter-start="0" data-purecounter-end="0" data-purecounter-duration="1" class="purecounter"></span>
<p>Downloads</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-person"></i>
<span data-purecounter-start="0" data-purecounter-end="25" data-purecounter-duration="1" class="purecounter">0</span>
<p>Users</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-headset"></i>
<span >24/7</span>
<p>Hours Of Support</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-people"></i>
<span data-purecounter-start="0" data-purecounter-end="5" data-purecounter-duration="1" class="purecounter">4</span>
<p>Employees</p>
</div>
</div>
</div>
</div>
</section><!-- End Counts Section -->
<!-- ======= Gallery Section ======= -->
<section id="gallery" class="gallery">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Gallery</h2>
<p>Check our Gallery</p>
</div>
<div class="row g-0" data-aos="fade-left">
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="100">
<a href="assets/img/gallery/gallery-1.jpg" class="gallery-lightbox">
<img src="assets/img/gallery/gallery-1.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="150">
<a href="assets/img/gallery/gallery-2.jpg" class="gallery-lightbox">
<img src="assets/img/gallery/gallery-2.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="200">
<a href="assets/img/gallery/gallery-3.jpg" class="gallery-lightbox">
<img src="assets/img/gallery/gallery-3.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</section><!-- End Gallery Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container">
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<a href="https://tylerpotts.co.uk/"><img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt=""></a>
<h3><a href="https://tylerpotts.co.uk/">Tyler Potts</a></h3>
<h4>Developer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Amazing website dude!
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="">
<h3>User</h3>
<h4>User of twixxl</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="">
<h3>User</h3>
<h4>User of twixxl</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="">
<h3>User</h3>
<h4>User of twixxl</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>User</h3>
<h4>User of twixxl</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Team</h2>
<p>Our Great Team</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/team/team-1.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>SF18</h4>
<span>CEO & Founder</span>
<div class="social">
<a href=""><i class="bi bi-globe2"></i></a>
<a href=""><i class="bi bi-youtube"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-github"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="member" data-aos="zoom-in" data-aos-delay="200">
<div class="pic"><img src="assets/img/team/team-2.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Ketsu</h4>
<span>Co-Founder</span>
<div class="social">
<a href=""><i class="bi bi-globe2"></i></a>
<a href=""><i class="bi bi-youtube"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-github"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="300">
<div class="pic"><img src="assets/img/team/team-4.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Stitzyy</h4>
<span>VP & Head of FM, Adv and HRO</span>
<div class="social">
<a href=""><i class="bi bi-globe2"></i></a>
<a href=""><i class="bi bi-youtube"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-github"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="400">
<div class="pic"><img src="assets/img/team/team-4.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Bushy</h4>
<span>Senior Software Engineer</span>
<div class="social">
<a href=""><i class="bi bi-globe2"></i></a>
<a href=""><i class="bi bi-youtube"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-github"></i></a>
</div>
</div>
</div>
</div>
<a class="employees" href="employees"><i class="bi bi-chevron-down" title="More Employees..." data-aos="zoom-in" data-aos-delay="500"></i></a>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Pricing Section ======= -->
<section id="pricing" class="pricing">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Pricing</h2>
<p>HOW MUCH DOES IT COST?</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6">
<div class="box" data-aos="zoom-in" data-aos-delay="100">
<h3>twixxl Free</h3>
<h4><sup>$</sup>0<span> / month</span></h4>
<ul>
<li><strong>Emojies</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>5Mb Uploads</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li class="na">Flower Support <i class="bi bi-x" style="color:#f44336"></i></li>
<li class="na">Custom Wallpaper <i class="bi bi-x" style="color:#f44336"></i></li>
<li class="na">Custom Badges <i class="bi bi-x" style="color:#f44336"></i></li>
</ul>
<div class="btn-wrap">
<a onclick="comingsoon()" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box featured" data-aos="zoom-in" data-aos-delay="200">
<h3>twixxl Budget</h3>
<h4><sup>$</sup>4.99<span> / month</span></h4>
<ul>
<li><strong>Emojies</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>10Mb Uploads</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>Flower Support 2x</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li class="na">Custom Wallpaper <i class="bi bi-x" style="color:#f44336"></i></li>
<li class="na">Custom Badges <i class="bi bi-x" style="color:#f44336"></i></li>
</ul>
<div class="btn-wrap">
<a onclick="comingsoon()" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="300">
<h3>twixxl Classic</h3>
<h4><sup>$</sup>9.99<span> / month</span></h4>
<ul>
<li><strong>Emojies</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>15Mb Uploads</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>Flower Support 4x</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>Custom Wallpaper</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li class="na">Custom Badges <i class="bi bi-x" style="color:#f44336"></i></li>
</ul>
<div class="btn-wrap">
<a onclick="comingsoon()" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="400">
<span class="advanced">Advanced</span>
<h3>twixxl Ultimate</h3>
<h4><sup>$</sup>14.99<span> / month</span></h4>
<ul>
<li><strong>Emojies</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>20Mb Uploads</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>Flower support 8x</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>Custom Wallpaper</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
<li><strong>Custom Badges</strong> <i class="bi bi-check" style="color: #04AA6D;"></i></li>
</ul>
<div class="btn-wrap">
<a onclick="comingsoon()" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Pricing Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>F.A.Q</h2>
<p>Frequently Asked Questions</p>
</div>
<div class="faq-list">
<ul>
<li data-aos="fade-up">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" class="collapse" data-bs-target="#faq-list-1">Is twixxl secure? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-bs-parent=".faq-list">
<p>
Yes upon completion; twixxl will feature complete end-to-end encryption for all your messages and a strict no-logs policy. You can be assured that we respect your privacy and hold our role as protectors of data in relation to you; with the highest regard.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-3" class="collapsed">How do i get badges? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-bs-parent=".faq-list">
<p>
There are several ways to acquire badges on the twixxl platform. One of the most accessible ways is to purchase one of our premium plans to get the early supporter badge. Another way of acquiring badges is to get approved as a beta tester.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-4" class="collapsed">How do i get verified on twixxl? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-bs-parent=".faq-list">
<p>
You can get verified by contacting our suppot and requesting it, along with the necassary information and documents to prove your existence as the valid citizen of any country.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-5" class="collapsed">Where can I go to if I have a suggestion or complaint? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-5" class="collapse" data-bs-parent=".faq-list">
<p>
Get in touch with us with your suggestions or complaints by email at: <strong>[email protected]</strong>
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="500">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-6" class="collapsed">What is flower support? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-6" class="collapse" data-bs-parent=".faq-list">
<p>
Flower support is a way to support your favorite twixxler. By supporting them, they earn money. With buying twixxl Budget, Classic, Ultimate they all come with an exclusive twixxl support.
</p>
</div>
</li>
</ul>
</div>
</div>
</section><!-- End F.A.Q Section -->
<!-- ======= Download Section ======= -->
<section id="download" class="download">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Download</h2>
<p>Ready to experience twixxl?</p>
</div>
<div class="container" data-aos="fade-up">
<a class="btn-download-os" onclick="thankYou()">Detecting Operating System</a>
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="footer-info">
<h3><a href="index"><img src="/assets/img/New_twixxl Logo_Rounded.svg" alt="" height="34"> <span>twixxl</span></a></h3>
<p class="pb-3"><em>Your platform to meet the world and everyone in between.</em></p>
<p>
<br>
Middle East<br><br>
<strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a><br>
</p>
<div class="social-links mt-3">
<a href="#" class="youtube"><i class="bx bxl-youtube"></i></a>
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="tiktok"><i class="bx bxl-tiktok"></i></a>
<a href="https://github.com/SF0018/twixxl" class="linkedin"><i class="bx bxl-github"></i></a>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="#">Home</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#about">About us</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Status</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="terms">Terms of service</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Privacy policy</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="#">Jobs</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Support</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Licenses</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Marketing</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#download">Download</a></li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Our Newsletter</h4>
<p>Subscribe to our newsletter to get latest news/updates on twixxl.</p>
<form action="" method="post">
<input type="email" name="email" placeholder="Email address"><input type="submit" onclick="comingsoon()" value="Subscribe">
</form>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
Copyright ©2022 <strong><span>twixxl</span></strong>, All rights reserved.
</div>
<div class="credits">
<a href="">Privacy policy</a> | <a href="terms">Terms of service</a> | <a href="">Support</a>
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<div id="preloader">
<div class="pre-container">
<div class="container">
<img class="pre-img" src="/assets/img/New_twixxl Logo_Rounded.svg" height="60" style="position: relative; top: -50px;" alt="">
<h1>DID YOU KNOW?</h1>
<p id="randommessage"></p>
</div>
</div>
</div>
<!-- Vendor JS Files -->
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<style>
.vid-box {
background-color: var(--bg);
width: 100%;
height: 100%;
padding-top: 0;
color: var(--color-text);
}
.vid-box h1 {
text-align: center;
}
.modalvid{
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
overflow-y: hidden;
overflow-x: hidden;
backdrop-filter: blur(10px);
}
</style>
<div id="about-vid" class="modalvid">
<div class="vid-box animate">
<span onclick="document.getElementById('about-vid').style.display='none'" class="close" title="Close Video" id="">×</span>
<h1>Coming soon!</h1>
</div>
</div>
<div id="id01" class="modal">
<div class="modal-content animate">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Signup" id="close-modal-button">×</span>
<img src="/assets/img/twixxl_login_background.png" height="90" style="border-radius: 8px;" alt="">
<img src="/assets/img/twixxl_User.jpg" height="70" style="border-radius: 100%; position: absolute;
top: 130px;
left: 40%;
transform: translateY(-50%); " alt="">
<div class="input_box" style=" position: absolute;
top: 170px;
left: 10px;
transform: translateY(-50%);">
<input type="text" id="username" placeholder="Username" required>
<div class="icon"><i class="bi bi-person"></i></div>
</div>
<div class="input_box" style=" position: absolute;
top: 230px;
left: 10px;
transform: translateY(-50%);">
<input type="text" id="email" placeholder="Email" required>
<div class="icon"><i class="bi bi-envelope"></i></div>
</div>
<div class="input_box" style=" position: absolute;
top: 290px;
left: 10px;
transform: translateY(-50%);">
<input type="password" id="password" placeholder="Password" required>
<div class="icon"><i class="bi bi-key"></i></div>
</div>
<p style=" white-space: nowrap;font-size: 0.7em; margin-top: 41%; margin-left:-2%;">By creating an account you agree to our <a href="terms" style="color:dodgerblue;">Terms of service</a>.</p>
<div class="input_box button" style=" position: absolute;
top: 390px;
left: 10px;
transform: translateY(-50%);">
<input type="submit" id="signUp" value="Signup">
</div>
<div class="sign_up">
Already have an account? <a href="#">Login</a>
</div>
</div>
</div>
<script>
// Get the modal
var modal = document.getElementById('id01');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
document.querySelector("body").style.overflow = 'overlay';
}
}
document.querySelector("#open-modal-button").addEventListener('click', function() {
document.querySelector("body").style.overflow = 'hidden';
});
document.querySelector("#close-modal-button").addEventListener('click', function() {
document.querySelector("body").style.overflow = 'overlay';
});
</script>
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.8.1/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.8.1/firebase-analytics.js";
import { getDatabase, set, ref } from "https://www.gstatic.com/firebasejs/9.8.1/firebase-database.js";
import { getAuth, createUserWithEmailAndPassword } from "https://www.gstatic.com/firebasejs/9.8.1/firebase-auth.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
// Your web app's Firebase configuration
const firebaseConfig = {
apiKey: "AIzaSyCDXj91Z7mxbbyxmHH-fqKZyeB0NCdx6Ec",
authDomain: "twixxl-62260.firebaseapp.com",
databaseURL: "https://twixxl-62260-default-rtdb.firebaseio.com",
projectId: "twixxl-62260",
storageBucket: "twixxl-62260.appspot.com",
messagingSenderId: "91276470040",
appId: "1:91276470040:web:dee4392cc869a1988ee06d"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const database = getDatabase(app);
const auth = getAuth();
signUp.addEventListener('click',(e)=> {
var email = document.getElementById('email').value;
var password = document.getElementById('password').value;
var username = document.getElementById('username').value;
createUserWithEmailAndPassword(auth, email, password)
.then((userCredential) => {
// Signed in
const user = userCredential.user;
set(ref(database, 'users/' + user.uid),{
username: username ,
email: email
})
alert('User Created!')
// ...
})
.catch((error) => {
const errorCode = error.code;
const errorMessage = error.message;
alert(errorMessage);
// ..
});
})
login.addEventListener('click',(e)=>{
var email = document.getElementById('email').value;
var password = document.getElementById('password').value;
signInWithEmailAndPassword(auth, email, password)
.then((userCredential) => {
// Signed in
const user = userCredential.user;
const dt = new Date();
update(ref(database, 'users/' + user.uid),{
last_login: dt,
})
alert('User loged in!');
// ...
})
.catch((error) => {
const errorCode = error.code;
const errorMessage = error.message;
alert(errorMessage);
});
});
const user = auth.currentUser;
onAuthStateChanged(auth, (user) => {
if (user) {
// User is signed in, see docs for a list of available properties
// https://firebase.google.com/docs/reference/js/firebase.User
const uid = user.uid;
//bla bla bla
// ...
} else {
// User is signed out
// ...
//bla bla bla
}
});
logout.addEventListener('click',(e)=>{
signOut(auth).then(() => {
// Sign-out successful.