This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
index.html
1540 lines (1473 loc) · 110 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" class="bg-[#09090d] text-white overflow-x-hidden">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="KeyAuth - Open Source Auth">
<meta
content="Secure your software against piracy, an issue causing $422 million in losses annually - Fair pricing & Features not seen in competitors"
name="description" />
<meta content="KeyAuth" name="author" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords"
content="KeyAuth, Cloud Authentication, Key Authentication,Authentication, API authentication,Security, Encryption authentication, Authenticated encryption, Cybersecurity, Developer, SaaS, Software Licensing, Licensing" />
<meta property="og:description"
content="Secure your software against piracy, an issue causing $422 million in losses annually - Fair pricing & Features not seen in competitors" />
<meta property="og:image" content="https://cdn.keyauth.cc/front/assets/img/favicon.png" />
<meta property="og:site_name" content="KeyAuth | Secure your software from piracy." />
<link rel="shortcut icon" type="image/jpg" href="https://cdn.keyauth.cc/front/assets/img/favicon.png">
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="KeyAuth - Open Source Auth">
<meta itemprop="description"
content="Secure your software against piracy, an issue causing $422 million in losses annually - Fair pricing & Features not seen in competitors">
<meta itemprop="image" content="https://cdn.keyauth.cc/front/assets/img/favicon.png">
<!-- Twitter Card data -->
<meta name="twitter:card" content="product">
<meta name="twitter:site" content="@keyauth">
<meta name="twitter:title" content="KeyAuth - Open Source Auth">
<meta name="twitter:description"
content="Secure your software against piracy, an issue causing $422 million in losses annually - Fair pricing & Features not seen in competitors">
<meta name="twitter:creator" content="@keyauth">
<meta name="twitter:image" content="https://cdn.keyauth.cc/front/assets/img/favicon.png">
<!-- Open Graph data -->
<meta property="og:title" content="KeyAuth - Open Source Auth" />
<meta property="og:type" content="website" />
<meta property="og:url" content="./" />
<title>KeyAuth - Open Source Auth</title>
<!-- Canonical SEO -->
<link rel="canonical" href="https://keyauth.cc" />
<link rel="stylesheet" href="https://cdn.keyauth.cc/v3/dist/output.css">
<link rel="stylesheet" type="text/css" href="https://cdn.keyauth.cc/v3/scripts/animate.min.css" />
</head>
<body>
<header>
<nav class="border-gray-200 px-4 lg:px-6 py-2.5 mb-14">
<div class="flex flex-wrap justify-between items-center mx-auto max-w-screen-xl">
<a href="./" class="flex items-center">
<img src="https://cdn.keyauth.cc/v2/assets/media/logos/logo-1-dark.png" class="mr-3 h-12 mt-2"
alt="KeyAuth Logo" />
</a>
<div class="flex items-center lg:order-2">
<a href="./login"
class="text-white focus:ring-0 font-medium rounded-lg text-sm px-4 py-2 lg:px-5 lg:py-2.5 mr-2 hover:opacity-60 transition duration-200 focus:outline-none focus:ring-gray-800">
Client Area
</a>
<a href="./register"
class="text-white focus:ring-0 font-medium rounded-lg text-sm px-4 py-2 lg:px-5 lg:py-2.5 mr-2 bg-blue-600 hover:opacity-80 focus:outline-none focus:ring-blue-800 transition duration-200">
Onboard Now
</a>
<button data-collapse-toggle="mmenu" type="button"
class="inline-flex items-center p-2 ml-1 text-sm text-gray-500 rounded-lg lg:hidden focus:outline-none focus:ring-0"
aria-controls="mmenu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
clip-rule="evenodd"></path>
</svg>
<svg class="hidden w-6 h-6" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
</div>
<div class="hidden justify-between items-center w-full lg:flex lg:w-auto lg:order-1" id="mmenu">
<ul class="flex flex-col mt-4 font-medium lg:flex-row lg:space-x-8 lg:mt-0">
<li>
<a href="./"
class="block py-2 pr-4 pl-3 border-b lg:hover:bg-transparent lg:border-0 lg:p-0 text-gray-400 hover:bg-gray-700 hover:text-white lg:hover:bg-transparent border-gray-700 transition duration-200"
aria-current="page">Home</a>
</li>
<li>
<a href="#features"
class="block py-2 pr-4 pl-3 border-b lg:hover:bg-transparent lg:border-0 lg:p-0 text-gray-400 hover:bg-gray-700 hover:text-white lg:hover:bg-transparent border-gray-700 transition duration-200">Features</a>
</li>
<li>
<button id="mm-button" data-dropdown-toggle="mm"
class="flex justify-between items-center py-2 pr-4 pl-3 w-full font-medium border-b lg:w-auto lg:hover:bg-transparent lg:border-0 lg:p-0 text-gray-400 hover:bg-gray-700hover:text-white lg:hover:bg-transparent border-gray-700 hover:text-white transition duration-200">Insights
<svg class="ml-1 w-5 h-5 lg:w-4 lg:h-4" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg></button>
<div id="mm"
class="grid hidden absolute z-10 w-full border shadow-md border-[#0f0f17] lg:rounded-lg lg:w-auto lg:grid-cols-3 bg-[#0f0f17]">
<div class="p-2 bg-[#09090d] lg:rounded-lg text-white lg:col-span-2">
<ul>
<li>
<a href="https://youtube.com/keyauth" target="_blank"
class="flex items-center p-3 rounded-lg hover:bg-[#0f0f17]">
<div class="p-2 mr-4 rounded-lg shadow bg-[#0f0f17]">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M21.593 7.203a2.506 2.506 0 0 0-1.762-1.766c-1.566-.43-7.83-.437-7.83-.437s-6.265-.007-7.832.404a2.56 2.56 0 0 0-1.766 1.778c-.413 1.566-.417 4.814-.417 4.814s-.004 3.264.406 4.814c.23.857.905 1.534 1.763 1.765 1.582.43 7.83.437 7.83.437s6.265.007 7.831-.403a2.515 2.515 0 0 0 1.767-1.763c.414-1.565.417-4.812.417-4.812s.02-3.265-.407-4.831ZM9.996 15.005l.005-6 5.207 3.005-5.212 2.995Z">
</path>
</svg>
</div>
<div>
<div class="font-semibold">
Explore Our YouTube Channel
</div>
<div class="text-sm font-light text-gray-400">Watch Feature
Showcases and Updates on YouTube.</div>
</div>
</a>
</li>
<li>
<a href="https://t.me/keyauth" target="_blank"
class="flex items-center p-3 rounded-lg hover:bg-[#0f0f17]">
<div class="p-2 mr-4 rounded-lg shadow bg-[#0f0f17]">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="m20.665 3.72-17.73 6.837c-1.21.486-1.203 1.16-.222 1.462l4.552 1.42 10.532-6.645c.498-.303.953-.14.579.192l-8.533 7.7H9.84l.002.002-.314 4.692c.46 0 .663-.211.92-.46l2.212-2.15 4.599 3.397c.848.467 1.457.227 1.668-.785l3.019-14.228c.309-1.24-.473-1.8-1.282-1.434Z">
</path>
</svg>
</div>
<div>
<div class="font-semibold">
Connect on Our Telegram Platform
</div>
<div class="text-sm font-light text-gray-400">Connect and
Communicate on Telegram.</div>
</div>
</a>
</li>
<li>
<a href="https://github.com/keyauth" target="_blank"
class="flex items-center p-3 rounded-lg hover:bg-[#0f0f17]">
<div class="p-2 mr-4 rounded-lg shadow bg-[#0f0f17]">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M12.026 2a9.973 9.973 0 0 0-9.974 9.974c0 4.406 2.857 8.145 6.82 9.465.5.09.68-.217.68-.481 0-.237-.008-.865-.011-1.696-2.775.602-3.361-1.338-3.361-1.338-.452-1.152-1.107-1.459-1.107-1.459-.905-.619.069-.605.069-.605 1.002.07 1.527 1.028 1.527 1.028.89 1.524 2.336 1.084 2.902.829.09-.645.35-1.085.635-1.334-2.214-.251-4.542-1.107-4.542-4.93 0-1.087.389-1.979 1.024-2.675-.101-.253-.446-1.268.099-2.64 0 0 .837-.269 2.742 1.021a9.582 9.582 0 0 1 2.496-.336 9.555 9.555 0 0 1 2.496.336c1.906-1.291 2.742-1.021 2.742-1.021.545 1.372.203 2.387.099 2.64.64.696 1.024 1.587 1.024 2.675 0 3.833-2.33 4.675-4.552 4.922.355.308.675.916.675 1.846 0 1.334-.012 2.41-.012 2.737 0 .267.178.577.687.479C19.146 20.115 22 16.379 22 11.974 22 6.465 17.535 2 12.026 2Z"
clip-rule="evenodd"></path>
</svg>
</div>
<div>
<div class="font-semibold">
Explore Our GitHub Repositories
</div>
<div class="text-sm font-light text-gray-400">Explore Official
Examples on GitHub.</div>
</div>
</a>
</li>
<li>
<a href="https://twitter.com/KeyAuth" target="_blank"
class="flex items-center p-3 rounded-lg hover:bg-[#0f0f17]">
<div class="p-2 mr-4 rounded-lg shadow bg-[#0f0f17]">
<svg class="w-5 h-5" fill="currentColor" version="1.1" id="svg5"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1668.56 1221.19"
style="enable-background:new 0 0 1668.56 1221.19;"
xml:space="preserve">
<g id="layer1" transform="translate(52.390088,-25.058597)">
<path id="path1009"
d="M283.94,167.31l386.39,516.64L281.5,1104h87.51l340.42-367.76L984.48,1104h297.8L874.15,558.3l361.92-390.99
h-87.51l-313.51,338.7l-253.31-338.7H283.94z M412.63,231.77h136.81l604.13,807.76h-136.81L412.63,231.77z" />
</g>
</svg>
</div>
<div>
<div class="font-semibold">
Follow Us on X / Twitter
</div>
<div class="text-sm font-light text-gray-400">Stay Informed with the
Latest on X / Twitter.</div>
</div>
</a>
</li>
</ul>
</div>
<div class="py-5 px-5 lg:rounded-lg lg:col-span-1 bg-[#0f0f17]">
<h3 class="mb-4 text-sm font-semibold text-white">Explore Our Examples</h3>
<ul class="space-y-4 text-sm text-gray-400">
<li>
<a href="https://github.com/KeyAuth/KeyAuth-CPP-Example"
class="hover:text-blue-500" target="_blank">
C++
</a>
</li>
<li>
<a href="https://github.com/KeyAuth/KeyAuth-CSHARP-Example"
class="hover:text-blue-500" target="_blank">
C# (CSharp)
</a>
</li>
<li>
<a href="https://github.com/mazkdevf/KeyAuth-JS-Example"
class="hover:text-blue-500" target="_blank">
JavaScript
</a>
</li>
<li>
<a href="https://github.com/KeyAuth/KeyAuth-Python-Example"
class="hover:text-blue-500" target="_blank">
Python
</a>
</li>
<li>
<a href="https://github.com/KeyAuth/KeyAuth-PHP-Example"
class="hover:text-blue-500" target="_blank">
PHP
</a>
</li>
<li>
<a href="https://github.com/KeyAuth/KeyAuth-Rust-Example"
class="hover:text-blue-500" target="_blank">
Rust
</a>
</li>
<li>
<a href="https://github.com/KeyAuth-Archive/KeyAuth-JAVA-api"
class="hover:text-blue-500" target="_blank">
Java
</a>
</li>
<li>
<a href="https://github.com/mazkdevf/KeyAuth-Ruby-Example"
class="hover:text-blue-500" target="_blank">
Ruby
</a>
</li>
</ul>
</div>
</div>
</li>
<li>
<a href="#plans"
class="block py-2 pr-4 pl-3 border-b lg:hover:bg-transparent lg:border-0 lg:p-0 text-gray-400 hover:bg-gray-700 hover:text-white lg:hover:bg-transparent border-gray-700 transition duration-200">
Plans
</a>
</li>
<li>
<a href="#team"
class="block py-2 pr-4 pl-3 border-b lg:hover:bg-transparent lg:border-0 lg:p-0 text-gray-400 hover:bg-gray-700 hover:text-white lg:hover:bg-transparent border-gray-700 transition duration-200">
Our Team
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section class="">
<div class="max-w-screen-xl px-4 py-8 mx-auto lg:py-16">
<div class="grid items-center gap-8 mb-8 lg:mb-16 lg:gap-12 lg:grid-cols-12 ">
<div class="col-span-6 text-center sm:mb-6 lg:text-left lg:mb-0">
<a class="inline-flex items-center justify-between px-1 py-1 pr-4 mb-6 text-sm text-gray-400 bg-[#0f0f17] rounded-full text-white hover:opacity-60 transition duration-200 animate-on-scroll-in-down"
href="./app/?page=forms" target="_blank" role="alert">
<span class="px-3 py-1 mr-3 text-xs text-white rounded-full bg-blue-700">
Join US!
</span> <span class="text-sm font-medium">
Apply for support, enjoy unlimited seller subscription while on staff.
</span>
<svg class="w-5 h-5 ml-2" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"></path>
</svg>
</a>
<h1
class="mb-4 text-4xl font-extrabold leading-none tracking-tight md:text-5xl text-white animate-on-scroll">
Unleashing the Ultimate Power of Authentication
</h1>
<p
class="max-w-xl mx-auto mb-6 font-base lg:mx-0 xl:mb-8 md:text-lg xl:text-xl text-gray-400 animate-on-scroll-right">
KeyAuth Seamlessly Blends Cloud-Powered Subscription Hosting with an Open-Source Foundation.
</p>
<a href="./register/" target="_blank"
class="inline-flex items-center justify-center px-5 py-3 mr-3 text-base font-medium text-center text-white rounded-lg bg-blue-700 hover:bg-blue-800 focus:ring-0 focus:ring-blue-900 transition duration-200 animate-on-scroll">
Onboard Now
<svg class="w-5 h-5 ml-2 -mr-1" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</a>
<a href="./login/" target="_blank"
class="inline-flex items-center justify-center px-5 py-3 text-base font-medium text-center border rounded-lg focus:ring-0 text-white border-gray-700 hover:opacity-60 focus:ring-gray-800 transition duration-200 animate-on-scroll">
Client Area
</a>
</div>
<div class="col-span-6 animate-on-scroll-right">
<div
class="relative mx-auto border-[#0f0f17] bg-[#0f0f17] border-[8px] rounded-t-xl h-[172px] max-w-[301px] md:h-[294px] md:max-w-[512px]">
<div class="rounded-lg overflow-hidden h-[156px] md:h-[278px]">
<img src="https://cdn.keyauth.cc/v2/dashboard-pic.png" class="h-[156px] md:h-[278px] w-full"
alt="">
</div>
</div>
<div
class="relative mx-auto bg-[#0f0f17] rounded-b-xl rounded-t-sm h-[17px] max-w-[351px] md:h-[21px] md:max-w-[597px]">
<div
class="absolute left-1/2 top-0 -translate-x-1/2 rounded-b-xl w-[56px] h-[5px] md:w-[96px] md:h-[8px] bg-[#09090d]">
</div>
</div>
</div>
</div>
<div class="grid gap-8 sm:gap-12 md:grid-cols-3 pt-12 animate-on-scroll-in-up" id="features">
<div class="flex justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 mr-3 text-blue-500 shrink-0"
fill="currentColor" viewBox="0 0 24 24">
<path fill="currentColor"
d="M14.2 14.5v.24c-.7.6-1.2 1.5-1.2 2.46V20H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58c0-1.3.39-2.46 1.17-3.48S4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04c1.12 1.12 1.77 2.46 1.97 3.96c-2.57.04-4.73 2.08-4.73 4.5m8.8 2.8v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3v-1.5Z" />
</svg>
<div>
<h3 class="mb-1 text-lg font-semibold leading-tight text-white">
Server-Side Webhooks & Variables
</h3>
<p class="font-light text-gray-400">
Private Webhooks, Secure Server-side File Management, and Protected Variables.
</p>
</div>
</div>
<div class="flex justify-center">
<svg class="w-6 h-6 mr-3 text-blue-500 shrink-0" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z"
clip-rule="evenodd"></path>
</svg>
<div>
<h3 class="mb-1 text-lg font-semibold leading-tight text-white">
Privacy First
</h3>
<p class="font-light text-gray-400">
We prioritize your needs, your users, and the sanctity of your data.
</p>
</div>
</div>
<div class="flex justify-center">
<svg class="w-6 h-6 mr-3 text-blue-500 shrink-0" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M2.165 19.551c.186.28.499.449.835.449h15c.4 0 .762-.238.919-.606l3-7A.998.998 0 0 0 21 11h-1V8c0-1.103-.897-2-2-2h-6.655L8.789 4H4c-1.103 0-2 .897-2 2v13h.007a1 1 0 0 0 .158.551ZM18 8v3H6c-.4 0-.762.238-.919.606L4 14.129V8h14Z">
</path>
</svg>
<div>
<h3 class="mb-1 text-lg font-semibold leading-tight text-white">
Open-Source
</h3>
<p class="font-light text-gray-400">
KeyAuth operates as open-source, granting you full transparency into its functionalities.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="mt-32 animate-on-scroll-right">
<div
class="gap-8 items-center py-8 px-4 mx-auto max-w-screen-xl xl:gap-16 md:grid md:grid-cols-2 sm:py-16 lg:px-6">
<img class="w-full" src="https://cdn.keyauth.cc/v3/imgs/apps.svg" alt="">
<div class="mt-4 md:mt-0">
<h2 class="mb-4 text-4xl tracking-tight font-extrabold text-white">
Craft <span
class="text-transparent bg-clip-text bg-gradient-to-r to-blue-600 from-sky-400">Secure</span>
and <span
class="text-transparent bg-clip-text bg-gradient-to-r to-blue-600 from-sky-400">Reliable</span>
Applications with KeyAuth
</h2>
<p class="mb-6 font-light md:text-lg text-gray-400">
KeyAuth is a cloud-based subscription authentication platform that allows you to implement
authentication into your software, website, or application with ease.
</p>
</div>
</div>
</section>
<section class="max-w-screen-xl px-4 py-8 mx-auto lg:py-16">
<div class="container px-4 mx-auto">
<div class="flex flex-wrap -m-8">
<div class="w-full md:w-1/2 p-8">
<h2 class="mb-4 text-2xl md:text-4xl tracking-tight font-extrabold text-white"
style="letter-spacing: -0.5px;">
KeyAuth is the <span
class="text-transparent bg-clip-text bg-gradient-to-r to-blue-600 from-sky-400">Ultimate</span>
Authentication Solution
</h2>
</div>
<div class="w-full md:w-1/2 p-8">
<div class="flex flex-wrap justify-center -m-8 2xl:-m-16 pt-12">
<div class="w-auto text-center p-4 md:mr-2">
<h3 class="mb-2.5 text-3xl font-semibold text-transparent bg-clip-text bg-gradient-to-r to-blue-600 from-sky-400"
style="letter-spacing: -0.5px;" data-v="accountsCreated" id="accs">
0
</h3>
<p class="font-medium text-gray-400 tracking-tight">
Accounts
</p>
</div>
<div class="w-auto text-center p-4 md:mr-2">
<h3 class="mb-2.5 text-3xl font-semibold text-transparent bg-clip-text bg-gradient-to-r to-blue-600 from-sky-400"
style="letter-spacing: -0.5px;" data-v="createdApps" id="apps">
0
</h3>
<p class="font-medium text-gray-400 tracking-tight">
Applications
</p>
</div>
<div class="w-auto text-center p-4 md:mr-2">
<h3 class="mb-2.5 text-3xl font-semibold text-transparent bg-clip-text bg-gradient-to-r to-blue-600 from-sky-400"
style="letter-spacing: -0.5px;" data-v="licensesGenerated" id="licenses">
0
</h3>
<p class="font-medium text-gray-400 tracking-tight">
Licenses
</p>
</div>
<div class="w-auto text-center p-4">
<h3 class="mb-2.5 text-3xl font-semibold text-transparent bg-clip-text bg-gradient-to-r to-blue-600 from-sky-400"
style="letter-spacing: -0.5px;" data-v="usersLoggedin" id="activeUsers">
0
</h3>
<p class="font-medium text-gray-400 tracking-tight">
Users Logged In
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="animate-on-scroll">
<div
class="gap-8 items-center py-8 px-4 mx-auto max-w-screen-xl xl:gap-16 md:grid md:grid-cols-2 sm:py-16 lg:px-6">
<div>
<h2 class="mb-4 text-4xl tracking-tight font-extrabold text-white">
Control <span
class="text-transparent bg-clip-text bg-gradient-to-r to-blue-600 from-sky-400">Everything</span>
with the Mobile App.
</h2>
<p class="mb-6 font-light md:text-lg text-gray-400">
KeyAuth's mobile app allows you to do anything from anywhere. Manage your users, view your logs, and
more.
</p>
<div class="items-center space-y-4 sm:flex sm:space-y-0 sm:space-x-4">
<a target="_blank" href="https://www.apple.com/fi/app-store/"
class="w-full sm:w-auto bg-[#0f0f17] border-2 hover:opacity-60 transition duration-200 focus:ring-0 focus:outline-none text-white rounded-lg inline-flex items-center justify-center px-8 py-2.5">
<svg class="mr-3 w-7 h-7" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M19.665 16.812a10.315 10.315 0 0 1-1.02 1.837c-.538.767-.979 1.297-1.317 1.592-.525.482-1.089.73-1.692.744-.432 0-.954-.123-1.562-.373-.61-.249-1.17-.371-1.683-.371-.537 0-1.113.122-1.73.371-.616.25-1.114.381-1.495.393-.577.025-1.154-.229-1.729-.764-.367-.32-.826-.87-1.377-1.648-.59-.829-1.075-1.794-1.455-2.891-.407-1.187-.61-2.335-.61-3.447 0-1.273.274-2.372.825-3.292a4.857 4.857 0 0 1 1.73-1.751 4.65 4.65 0 0 1 2.34-.662c.46 0 1.063.142 1.81.422.747.28 1.227.422 1.436.422.158 0 .69-.167 1.593-.498.853-.307 1.573-.434 2.163-.384 1.6.129 2.801.759 3.6 1.895-1.43.867-2.137 2.08-2.123 3.637.012 1.213.453 2.222 1.317 3.023.382.365.828.658 1.315.863-.106.307-.218.6-.336.882ZM15.998 2.381c0 .95-.348 1.838-1.039 2.659-.836.976-1.846 1.541-2.94 1.452a2.967 2.967 0 0 1-.022-.36c0-.913.396-1.889 1.103-2.688.352-.404.8-.741 1.343-1.009.542-.264 1.054-.41 1.536-.435.013.128.02.255.02.381Z">
</path>
</svg>
<div class="text-left">
<div class="mb-1 text-xs">
<span class="font-semibold">
Download on the
</span>
</div>
<div class="-mt-1 font-sans text-sm font-semibold">
App Store
</div>
</div>
</a>
<a target="_blank" href="https://play.google.com/store/apps/details?id=com.wnelson03.rn&hl=en_US"
class="w-full sm:w-auto bg-[#0f0f17] border-2 hover:opacity-60 transition duration-200 focus:ring-0 focus:outline-none text-white rounded-lg inline-flex items-center justify-center px-8 py-2.5">
<svg class="mr-3 w-7 h-7" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512">
<path fill="currentColor"
d="M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z">
</path>
</svg>
<div class="text-left">
<div class="mb-1 text-xs">
<span class="font-semibold">
Download on the
</span>
</div>
<div class="-mt-1 font-sans text-sm font-semibold">Google Play</div>
</div>
</a>
</div>
</div>
<div
class="relative mx-auto border-[#0f0f17] bg-[#0f0f17] border-[14px] rounded-[2.5rem] h-[600px] w-[300px] shadow-xl hidden mx-auto w-64 md:flex">
<div class="w-[148px] h-[18px] bg-[#0f0f17] top-0 rounded-b-[1rem] left-1/2 -translate-x-1/2 absolute">
</div>
<div class="h-[46px] w-[3px] bg-[#0f0f17] absolute -left-[17px] top-[124px] rounded-l-lg"></div>
<div class="h-[46px] w-[3px] bg-[#0f0f17] absolute -left-[17px] top-[178px] rounded-l-lg"></div>
<div class="h-[64px] w-[3px] bg-[#0f0f17] absolute -right-[17px] top-[142px] rounded-r-lg"></div>
<div class="rounded-[2rem] overflow-hidden w-[272px] h-[572px] bg-[#0f0f17]">
<img src="https://cdn.keyauth.cc/v3/imgs/mobile.png" class="w-[272px] h-[572px]" alt="">
</div>
</div>
</div>
</section>
<section id="plans">
<div class="max-w-screen-xl px-4 py-8 mx-auto lg:px-6 sm:py-16 lg:py-24">
<div class="mx-auto max-w-screen-md text-center">
<h2 class="mb-4 text-4xl tracking-tight font-extrabold text-white">Pricing Options</h2>
<p class="font-light mb-12 text-gray-400 sm:text-xl">We offer a variety of plans to suit your
needs.</p>
<div class="flex items-center justify-center mb-12 -mt-6">
<label class="relative inline-flex items-center mr-5 cursor-pointer">
<input type="checkbox" id="pricing_anually_month" value="" class="sr-only peer" checked>
<div
class="w-11 h-6 border-2 border-blue-700 bg-[#0f0f17] rounded-full peer peer-focus:ring-0 peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-0.5 after:left-[2px] after:bg-white after:border-[#0C0C12] after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-[#0C0C12]">
</div>
<span class="ml-3 text-sm font-medium text-gray-300">Annual pricing <span class="text-xs">(save
50% +)</span></span>
</label>
</div>
</div>
<div class="flex flex-wrap -m-7">
<div class="w-full md:w-1/3 p-7 animate-on-scroll">
<div class="h-full p-8 border border-[#0f0f17] rounded-xl bg-[#0f0f17]">
<div class="flex flex-wrap justify-between border-b border-gray-800 pb-7 mb-7">
<div class="w-full xl:w-auto">
<h3 class="font-bold text-2xl text-white">Tester</h3>
</div>
<div class="w-full xl:w-auto xl:text-right">
<h3 class="mb-0.5 font-bold text-2xl text-white">
<span class="text-sm mr-0.5">$</span> <span id="tester_mode"></span>
</h3>
<p class="text-sm text-gray-400">
Limited Access for those looking to experiment implementing KeyAuth
</p>
</div>
</div>
<ul class="mb-8">
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Users: 10
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Upload Files: (10 MB)
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-red-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm4.207 12.793-1.414 1.414L12 13.414l-2.793 2.793-1.414-1.414L10.586 12 7.793 9.207l1.414-1.414L12 10.586l2.793-2.793 1.414 1.414L13.414 12l2.793 2.793Z">
</path>
</svg>
<p>
Create Webhooks
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Variables: 5
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Logs: 20
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Hardware Blacklist
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-red-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm4.207 12.793-1.414 1.414L12 13.414l-2.793 2.793-1.414-1.414L10.586 12 7.793 9.207l1.414-1.414L12 10.586l2.793-2.793 1.414 1.414L13.414 12l2.793 2.793Z">
</path>
</svg>
<p>
Reseller & Manager Access
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-red-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm4.207 12.793-1.414 1.414L12 13.414l-2.793 2.793-1.414-1.414L10.586 12 7.793 9.207l1.414-1.414L12 10.586l2.793-2.793 1.414 1.414L13.414 12l2.793 2.793Z">
</path>
</svg>
<p>
SellerAPI Access
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-red-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm4.207 12.793-1.414 1.414L12 13.414l-2.793 2.793-1.414-1.414L10.586 12 7.793 9.207l1.414-1.414L12 10.586l2.793-2.793 1.414 1.414L13.414 12l2.793 2.793Z">
</path>
</svg>
<p>
Telegram Bot
</p>
</li>
</ul>
<button type="button"
class="text-white border-2 hover:bg-white hover:text-black focus:ring-0 focus:outline-none transition duration-200 font-medium rounded-lg text-sm px-5 py-2.5 text-center items-center mb-3 w-full">
<a href="./register/">
<span class="inline-flex">Start for Free
<svg class="w-3.5 h-3.5 ml-2 mt-0.5" aria-hidden="true"
xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="M1 5h12m0 0L9 1m4 4L9 9" />
</svg></span>
</a>
</button>
<p class="text-sm text-gray-500 text-center">No credit card required</p>
</div>
</div>
<div class="w-full md:w-1/3 p-7 animate-on-scroll-in-up">
<div class="h-full p-8 border border-[#0f0f17] rounded-xl bg-[#0f0f17]">
<div class="flex flex-wrap justify-between border-b border-gray-800 pb-7 mb-7">
<div class="w-full xl:w-auto">
<h3 class="font-bold text-2xl text-white">Developer</h3>
</div>
<div class="w-full xl:w-auto xl:text-right">
<h3
class="mb-0.5 font-bold text-2xl text-transparent bg-clip-text bg-gradient-to-r to-[#4fea74] from-[#1db233]">
<span class="text-sm mr-0.5">$</span><span id="developer_mode"></span>
</h3>
<p class="text-sm text-gray-400">
Ample limits plus full access to reseller system. Most folks start here.
</p>
</div>
</div>
<ul class="mb-8">
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Users: Unlimited
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Upload Files: (50 MB)
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Create Webhooks
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Variables: Unlimited
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Logs: Unlimited
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Hardware Blacklist
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Reseller & Manager Access
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-red-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm4.207 12.793-1.414 1.414L12 13.414l-2.793 2.793-1.414-1.414L10.586 12 7.793 9.207l1.414-1.414L12 10.586l2.793-2.793 1.414 1.414L13.414 12l2.793 2.793Z">
</path>
</svg>
<p>
SellerAPI Access
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-red-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm4.207 12.793-1.414 1.414L12 13.414l-2.793 2.793-1.414-1.414L10.586 12 7.793 9.207l1.414-1.414L12 10.586l2.793-2.793 1.414 1.414L13.414 12l2.793 2.793Z">
</path>
</svg>
<p>
Telegram Bot
</p>
</li>
</ul>
<button type="button"
class="text-[#1db233] border-2 border-[#1db233] hover:bg-[#1db233] hover:text-white focus:ring-0 focus:outline-none transition duration-200 font-medium rounded-lg text-sm px-5 py-2.5 text-center items-center mb-3 w-full">
<a href="./app/?page=upgrade">
<span class="inline-flex">
Purchase Developer Now
<svg class="w-3.5 h-3.5 ml-2 mt-0.5" aria-hidden="true"
xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="M1 5h12m0 0L9 1m4 4L9 9" />
</svg></span>
</a>
</button>
</div>
</div>
<div class="w-full md:w-1/3 p-7 animate-on-scroll-right">
<div class="h-full p-8 border border-[#0f0f17] rounded-xl bg-[#0f0f17]">
<div class="flex flex-wrap justify-between border-b border-gray-800 pb-7 mb-7">
<div class="w-full xl:w-auto">
<h3 class="font-bold text-2xl text-white">Seller</h3>
</div>
<div class="w-full xl:w-auto xl:text-right">
<h3
class="mb-0.5 font-bold text-2xl text-transparent bg-clip-text bg-gradient-to-r to-[#36e2dd] from-[#1e96fc]">
<span class="text-sm mr-0.5">$</span><span id="seller_mode"></span>
</h3>
<p class="text-sm text-gray-400">
Full-fledged supporter, we appreciate you for keeping our servers running!
</p>
</div>
</div>
<ul class="mb-8">
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Users: Unlimited
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Upload Files: (75 MB)
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Create Webhooks
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Variables: Unlimited
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Logs: Unlimited
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Hardware Blacklist
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Reseller & Manager Access
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
SellerAPI Access
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Telegram Bot
</p>
</li>
</ul>
<button type="button"
class="text-[#1e96fc] border-2 border-[#1e96fc] hover:bg-[#1e96fc] hover:text-white focus:ring-0 focus:outline-none transition duration-200 font-medium rounded-lg text-sm px-5 py-2.5 text-center items-center mb-3 w-full">
<a href="./app/?page=upgrade">
<span class="inline-flex">
Purchase Seller Now
<svg class="w-3.5 h-3.5 ml-2 mt-0.5" aria-hidden="true"
xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="M1 5h12m0 0L9 1m4 4L9 9" />
</svg></span>
</a>
</button>
</div>
</div>
<div class="w-full p-7 animate-on-scroll-in-up">
<div class="h-full p-8 border border-[#0f0f17] rounded-xl bg-[#0f0f17]">
<div class="flex flex-wrap justify-between border-b border-gray-800 pb-7 mb-7">
<div class="w-full xl:w-auto">
<h3 class="font-bold text-2xl text-white">Enterprise <span class="text-xs">(Source
Code)</span></h3>
</div>
<div class="w-full xl:w-auto xl:text-right">
<h3
class="mb-0.5 font-bold text-2xl text-transparent bg-clip-text bg-gradient-to-r to-[#eeba0b] from-[#f4e409]">
<span class="text-sm mr-0.5">$</span>79.99 / One-Time
</h3>
<p class="text-sm text-gray-400">
Opt for large-scale projects at $79.99 one-time cost. <br>Access paid KeyAuth
features' source code, one-on-one setup support, and more.
</p>
</div>
</div>
<ul class="mb-8 md:grid md:grid-cols-2">
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-red-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm4.207 12.793-1.414 1.414L12 13.414l-2.793 2.793-1.414-1.414L10.586 12 7.793 9.207l1.414-1.414L12 10.586l2.793-2.793 1.414 1.414L13.414 12l2.793 2.793Z">
</path>
</svg>
<p>
Cloud Hosted Subscription (KeyAuth Servers)
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">
</path>
</svg>
<p>
Source code of paid KeyAuth features
</p>
</li>
<li class="flex items-center mb-4 font-medium text-base text-white">
<svg class="h-5 w-5 mr-2.5 text-green-500" fill="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2Zm-1.999 14.413-3.713-3.705L7.7 11.292l2.299 2.295 5.294-5.294 1.414 1.414-6.706 6.706Z">