-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.html
1394 lines (1291 loc) · 86.7 KB
/
build.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
<html lang="en"><head>
<!-- Title -->
<title>Onepage Corporate | Front - Responsive Website Template</title>
<!-- Required Meta Tags Always Come First -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon -->
<link rel="shortcut icon" href="https://htmlstream.com/front/favicon.ico">
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="https://htmlstream.com/front/assets/css/vendor.min.css">
<!-- CSS Front Template -->
<link rel="stylesheet" href="https://htmlstream.com/front/assets/css/theme.min.css?v=1.0">
</head>
<body id="homeSection" data-aos-easing="ease" data-aos-duration="650" data-aos-delay="0" class="active">
<!-- Search Content -->
<div id="searchSlideDown" class="hs-unfold-content dropdown-unfold search-slide-down hs-unfold-hidden hs-unfold-content-initialized hs-unfold-css-animation" data-hs-target-height="0" data-hs-unfold-content="" data-hs-unfold-content-animation-in="fadeIn search-slide-down-show" data-hs-unfold-content-animation-out="fadeOutUp" style="animation-duration: 800ms;">
<form>
<!-- Input Group -->
<div class="input-group input-group-borderless search-slide-down-input bg-white rounded mb-2">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="fas fa-search"></i>
</span>
</div>
<input id="searchSlideDownControl" type="search" class="form-control" placeholder="Search Front" aria-label="Search Front">
<div class="input-group-append">
<a class="js-hs-search-unfold-invoker input-group-text js-hs-unfold-invoker" href="javascript:;" data-hs-unfold-options="{
"target": "#searchSlideDown",
"type": "css-animation",
"animationIn": "fadeIn search-slide-down-show",
"animationOut": "fadeOutUp",
"cssAnimatedClass": null,
"hasOverlay": true,
"overlayClass": ".search-slide-down-bg-overlay",
"overlayStyles": {
"background": "rgba(33, 50, 91, .7)"
},
"duration": 800,
"hideOnScroll": false
}" data-hs-unfold-target="#searchSlideDown" data-hs-unfold-invoker="">
<i class="fas fa-times" aria-hidden="true"></i>
</a>
</div>
</div>
<!-- End Input Group -->
<!-- Suggestions Content -->
<div class="rounded bg-white search-slide-down-suggestions py-3 px-5">
<ul class="list-unstyled list-sm-article mb-0">
<li><a href="#">About Front</a></li>
<li><a href="#">Getting Started</a></li>
<li><a href="#">Documentation</a></li>
</ul>
</div>
<!-- End Suggestions Content -->
</form>
</div>
<!-- End Search Content -->
<!-- ========== HEADER ========== -->
<header id="header" class="header header-box-shadow-on-scroll header-abs-top-lg header-show-hide-lg" data-hs-header-options="{
"fixMoment": 1000,
"fixEffect": "slide"
}">
<div class="header-section">
<!-- Topbar -->
<div class="container header-hide-content">
<nav class="js-mega-menu navbar navbar-expand-lg z-index-999 hs-menu-initialized hs-menu-horizontal">
<!-- Responsive Toggle Button -->
<button type="button" class="navbar-toggler btn btn-icon btn-sm rounded-circle" aria-label="Toggle navigation" aria-expanded="false" aria-controls="navBar" data-toggle="collapse" data-target="#navBar">
<span class="navbar-toggler-default">
<svg width="14" height="14" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<path fill="currentColor" d="M17.4,6.2H0.6C0.3,6.2,0,5.9,0,5.5V4.1c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,5.9,17.7,6.2,17.4,6.2z M17.4,14.1H0.6c-0.3,0-0.6-0.3-0.6-0.7V12c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,13.7,17.7,14.1,17.4,14.1z"></path>
</svg>
</span>
<span class="navbar-toggler-toggled">
<svg width="14" height="14" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<path fill="currentColor" d="M11.5,9.5l5-5c0.2-0.2,0.2-0.6-0.1-0.9l-1-1c-0.3-0.3-0.7-0.3-0.9-0.1l-5,5l-5-5C4.3,2.3,3.9,2.4,3.6,2.6l-1,1 C2.4,3.9,2.3,4.3,2.5,4.5l5,5l-5,5c-0.2,0.2-0.2,0.6,0.1,0.9l1,1c0.3,0.3,0.7,0.3,0.9,0.1l5-5l5,5c0.2,0.2,0.6,0.2,0.9-0.1l1-1 c0.3-0.3,0.3-0.7,0.1-0.9L11.5,9.5z"></path>
</svg>
</span>
</button>
<!-- End Responsive Toggle Button -->
<div id="topBar" class="collapse navbar-collapse">
<ul class="navbar-nav w-100">
<!-- Back To Main Demo -->
<li class="navbar-nav-item mr-auto">
<a class="nav-link font-size-1 py-2 pl-0" href="./index.html">
<div class="d-flex align-items-center">
<svg class="mb-0 mr-1" width="16px" height="16px" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M8.22,12.72A.75.75,0,0,1,8,12.19v-.38a.77.77,0,0,1,.22-.53l5.14-5.13a.5.5,0,0,1,.71,0l.71.71a.49.49,0,0,1,0,.7L10.33,12l4.45,4.44a.5.5,0,0,1,0,.71l-.71.7a.5.5,0,0,1-.71,0Z"></path>
</svg> Main Demo
</div>
</a>
</li>
<!-- End Back To Main Demo -->
<!-- Demos -->
<li class="hs-has-mega-menu navbar-nav-item" data-hs-mega-menu-item-options="{
"desktop": {
"position": "right",
"maxWidth": "900px"
}
}">
<a id="demosMegaMenu" class="hs-mega-menu-invoker nav-link nav-link-toggle font-size-1 py-2" href="javascript:;" aria-haspopup="true" aria-expanded="false">Demos</a>
<!-- Demos - Mega Menu -->
<div class="hs-mega-menu dropdown-menu w-100 hs-mega-menu-desktop-md hs-position-right" aria-labelledby="demosMegaMenu" style="max-width: 900px; display: none;">
<div class="row no-gutters">
<div class="col-lg-8">
<div class="navbar-promo-card-deck">
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="./demo-course/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-67.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Course</span>
<span class="navbar-promo-text">Learn On-demand demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="./demo-app-marketplace/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-45.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">App Marketplace</span>
<span class="navbar-promo-text">Marketplace app demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
</div>
<div class="navbar-promo-card-deck">
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-4.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Help Desk</span>
<span class="navbar-promo-text">Help desk demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="./demo-real-estate/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-13.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Real Estate <span class="badge badge-success badge-pill ml-1">New</span></span>
<span class="navbar-promo-text">Real estate demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
</div>
<div class="navbar-promo-card-deck">
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link" href="./demo-jobs/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-19.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Jobs <span class="badge badge-success badge-pill ml-1">New</span></span>
<span class="navbar-promo-text">Jobs demo</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<!-- Promo Item -->
<div class="navbar-promo-card navbar-promo-item">
<a class="navbar-promo-link disabled" href="javascript:;">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-28.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">New demo</span>
<span class="navbar-promo-text">Coming soon...</span>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
</div>
</div>
<!-- Promo -->
<div class="col-lg-4 navbar-promo d-none d-lg-block">
<a class="d-block navbar-promo-inner" href="#">
<div class="position-relative">
<img class="img-fluid rounded mb-3" src="https://htmlstream.com/front/assets/img/380x227/img1.jpg" alt="Image Description">
</div>
<span class="navbar-promo-text font-size-1">Front makes you look at things from a different perspectives.</span>
</a>
</div>
<!-- End Promo -->
</div>
</div>
<!-- End Demos - Mega Menu -->
</li>
<!-- End Demos -->
<!-- Docs -->
<li class="hs-has-mega-menu navbar-nav-item" data-hs-mega-menu-item-options="{
"desktop": {
"position": "right",
"maxWidth": "260px"
}
}">
<a id="docsMegaMenu" class="hs-mega-menu-invoker nav-link nav-link-toggle font-size-1 py-2 pr-0" href="javascript:;" aria-haspopup="true" aria-expanded="false">Docs</a>
<!-- Docs - Submenu -->
<div class="hs-mega-menu dropdown-menu hs-mega-menu-desktop-md hs-position-right" aria-labelledby="docsMegaMenu" style="min-width: 330px; max-width: 260px; display: none;">
<!-- Promo Item -->
<div class="navbar-promo-item">
<a class="navbar-promo-link" href="./documentation/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-2.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">
Documentation
<span class="badge badge-primary badge-pill ml-1">v3.3</span>
</span>
<small class="navbar-promo-text">Development guides</small>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<!-- Promo Item -->
<div class="navbar-promo-item">
<a class="navbar-promo-link" href="./snippets/index.html">
<div class="media align-items-center">
<img class="navbar-promo-icon" src="https://htmlstream.com/front/assets/svg/icons/icon-1.svg" alt="SVG">
<div class="media-body">
<span class="navbar-promo-title">Snippets</span>
<small class="navbar-promo-text">Start building</small>
</div>
</div>
</a>
</div>
<!-- End Promo Item -->
<div class="navbar-promo-footer">
<!-- List -->
<div class="row no-gutters">
<div class="col-6">
<div class="navbar-promo-footer-item">
<span class="navbar-promo-footer-text">Check what's new</span>
<a class="navbar-promo-footer-text" href="./documentation/changelog.html"> Changelog</a>
</div>
</div>
<div class="col-6 navbar-promo-footer-ver-divider">
<div class="navbar-promo-footer-item">
<span class="navbar-promo-footer-text">Have a question?</span>
<a class="navbar-promo-footer-text" href="http://htmlstream.com/contact-us"> Contact us</a>
</div>
</div>
</div>
<!-- End List -->
</div>
</div>
<!-- End Docs - Submenu -->
</li>
<!-- End Docs -->
</ul>
</div>
</nav>
</div>
<!-- End Topbar -->
<div id="logoAndNav" class="container">
<!-- Nav -->
<nav class="js-mega-menu navbar navbar-expand-lg hs-menu-initialized hs-menu-horizontal">
<div class="navbar-nav-wrap">
<!-- Logo -->
<a class="navbar-brand" href="./index.html" aria-label="Front">
<img src="https://htmlstream.com/front/assets/svg/logos/logo.svg" alt="Logo">
</a>
<!-- End Logo -->
<!-- Secondary Content -->
<div class="navbar-nav-wrap-content text-center">
<!-- Search -->
<div class="hs-unfold">
<a class="js-hs-unfold-invoker btn btn-xs btn-icon btn-ghost-secondary" href="javascript:;" data-hs-unfold-options="{
"target": "#searchSlideDown",
"type": "css-animation",
"animationIn": "fadeIn search-slide-down-show",
"animationOut": "fadeOutUp",
"cssAnimatedClass": null,
"hasOverlay": true,
"overlayClass": ".search-slide-down-bg-overlay",
"overlayStyles": {
"background": "rgba(33, 50, 91, .7)"
},
"duration": 800,
"hideOnScroll": false
}" data-hs-unfold-target="#searchSlideDown" data-hs-unfold-invoker="">
<i class="fas fa-search"></i>
</a>
</div>
<!-- End Search -->
</div>
<!-- End Secondary Content -->
<!-- Responsive Toggle Button -->
<button type="button" class="navbar-toggler navbar-nav-wrap-toggler btn btn-icon btn-sm rounded-circle" aria-label="Toggle navigation" aria-expanded="false" aria-controls="navBar" data-toggle="collapse" data-target="#navBar">
<span class="navbar-toggler-default">
<svg width="14" height="14" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<path fill="currentColor" d="M17.4,6.2H0.6C0.3,6.2,0,5.9,0,5.5V4.1c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,5.9,17.7,6.2,17.4,6.2z M17.4,14.1H0.6c-0.3,0-0.6-0.3-0.6-0.7V12c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,13.7,17.7,14.1,17.4,14.1z"></path>
</svg>
</span>
<span class="navbar-toggler-toggled">
<svg width="14" height="14" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<path fill="currentColor" d="M11.5,9.5l5-5c0.2-0.2,0.2-0.6-0.1-0.9l-1-1c-0.3-0.3-0.7-0.3-0.9-0.1l-5,5l-5-5C4.3,2.3,3.9,2.4,3.6,2.6l-1,1 C2.4,3.9,2.3,4.3,2.5,4.5l5,5l-5,5c-0.2,0.2-0.2,0.6,0.1,0.9l1,1c0.3,0.3,0.7,0.3,0.9,0.1l5-5l5,5c0.2,0.2,0.6,0.2,0.9-0.1l1-1 c0.3-0.3,0.3-0.7,0.1-0.9L11.5,9.5z"></path>
</svg>
</span>
</button>
<!-- End Responsive Toggle Button -->
<!-- Navigation -->
<div id="navBar" class="collapse navbar-collapse navbar-nav-wrap-collapse">
<div class="navbar-body header-abs-top-inner">
<ul class="js-scroll-nav navbar-nav header-navbar-nav">
<li class="navbar-nav-item active">
<a class="nav-link" href="#homeSection">Home</a>
</li>
<li class="navbar-nav-item">
<a class="nav-link" href="#aboutSection">About</a>
</li>
<li class="navbar-nav-item">
<a class="nav-link" href="#pricingSection">Pricing</a>
</li>
<li class="navbar-nav-item">
<a class="nav-link" href="#eventsSection">Events</a>
</li>
<li class="navbar-nav-item">
<a class="nav-link" href="#hiringSection">Hiring</a>
</li>
<li class="navbar-nav-item">
<a class="nav-link" href="#contactsSection">Contacts</a>
</li>
</ul>
</div>
</div>
<!-- End Navigation -->
</div>
</nav>
<!-- End Nav -->
</div>
</div>
</header>
<!-- ========== END HEADER ========== -->
<!-- ========== MAIN CONTENT ========== -->
<main id="content" role="main">
<!-- Hero Section -->
<div class="container position-relative z-index-4 space-top-2 space-top-md-4 space-top-lg-3">
<div class="row justify-content-lg-between align-items-lg-center">
<div class="col-md-10 col-lg-5 mb-9 mb-lg-0">
<div class="mb-7">
<h1 class="display-4 mb-4">Build your perfect startup</h1>
<p class="lead">Whatever your goal - we will get your there.</p>
</div>
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/illustrations/we-are-in-office-1.svg" alt="Image Description">
</div>
<div class="col-lg-6">
<!-- Form -->
<form class="js-validate card" novalidate="novalidate">
<div class="card-header bg-light text-center py-4 px-5 px-md-6">
<h2 class="h4 mb-0">Try it free for 7 days <span class="text-body font-size-1 font-weight-bold">starting at $59</span></h2>
</div>
<div class="card-body p-4 p-md-6">
<div class="row">
<div class="col-sm-6 mb-3">
<!-- Form Group -->
<div class="js-form-message form-group">
<label for="firstName" class="input-label">First name</label>
<input type="text" class="form-control is-invalid" name="firstName" id="firstName" placeholder="Nataly" aria-label="Nataly" required="" data-msg="Please enter first your name" aria-describedby="firstName-error" aria-invalid="true">
<div id="firstName-error" class="invalid-feedback">Please enter first your name</div></div>
<!-- End Form Group -->
</div>
<div class="col-sm-6 mb-3">
<!-- Form Group -->
<div class="js-form-message form-group">
<label for="lastName" class="input-label">Last name</label>
<input type="text" class="form-control is-invalid" name="lastName" id="lastName" placeholder="Gaga" aria-label="Gaga" required="" data-msg="Please enter last your name" aria-describedby="lastName-error" aria-invalid="true">
<div id="lastName-error" class="invalid-feedback">Please enter last your name</div></div>
<!-- End Form Group -->
</div>
<div class="col-sm-12 mb-3">
<!-- Form Group -->
<div class="js-form-message form-group">
<label for="emailAddress" class="input-label">Email address</label>
<input type="email" class="form-control is-invalid" name="emailAddress" id="emailAddress" placeholder="[email protected]" aria-label="[email protected]" required="" data-msg="Please enter a valid email address" aria-describedby="emailAddress-error" aria-invalid="true">
<div id="emailAddress-error" class="invalid-feedback">Please enter a valid email address</div></div>
<!-- End Form Group -->
</div>
<div class="col-sm-6 mb-3">
<!-- Form Group -->
<div class="js-form-message form-group">
<label for="password" class="input-label">Password</label>
<input type="text" class="form-control is-invalid" name="passowrd" id="password" placeholder="*********" aria-label="*********" required="" data-msg="Your password is invalid. Please try again" aria-describedby="password-error" aria-invalid="true">
<div id="password-error" class="invalid-feedback">Your password is invalid. Please try again</div></div>
<!-- End Form Group -->
</div>
<div class="col-sm-6 mb-3">
<!-- Form Group -->
<div class="js-form-message form-group">
<label for="confirmPassword" class="input-label">Confirm password</label>
<input type="text" class="form-control is-invalid" name="confirmPassword" id="confirmPassword" placeholder="*********" aria-label="*********" required="" data-msg="Password does not match the confirm password" aria-describedby="confirmPassword-error" aria-invalid="true">
<div id="confirmPassword-error" class="invalid-feedback">Password does not match the confirm password</div></div>
<!-- End Form Group -->
</div>
</div>
<!-- Checkbox -->
<div class="js-form-message mb-5">
<div class="custom-control custom-checkbox d-flex align-items-center text-muted">
<input type="checkbox" class="custom-control-input" id="termsCheckbox" name="termsCheckbox" required="" data-msg="Please accept our Terms and Conditions.">
<label class="custom-control-label" for="termsCheckbox">
<small>
I agree to the
<a class="link-underline" href="./page-terms.html">Terms and Conditions</a>
</small>
</label>
</div>
</div>
<!-- End Checkbox -->
<button type="submit" class="btn btn-block btn-primary transition-3d-hover">
Claim your free trial
<i class="fas fa-angle-right fa-sm ml-1"></i>
</button>
</div>
</form>
<!-- End Form -->
</div>
</div>
</div>
<!-- End Hero Section -->
<!-- Icon Blocks Section -->
<div id="aboutSection" class="container space-2 space-lg-3 active">
<!-- Title -->
<div class="w-lg-65 text-center mx-auto mb-5 mb-sm-9">
<h2 class="h1">What we do?</h2>
<p>A flexible theme for modern SaaS businesses</p>
</div>
<!-- End Title -->
<div class="row">
<div class="col-md-4 mb-7">
<!-- Icon Blocks -->
<div class="text-center px-lg-3">
<figure class="max-w-8rem mx-auto mb-4">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/icons/icon-45.svg" alt="SVG">
</figure>
<h3>Industry-leading designs</h3>
<p>Achieve virtually any design and layout from within the one template.</p>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-md-4 mb-7">
<!-- Icon Blocks -->
<div class="text-center px-lg-3">
<figure class="max-w-8rem mx-auto mb-4">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/icons/icon-14.svg" alt="SVG">
</figure>
<h3>Learn from the docs</h3>
<p>Whether you're a startup or a global enterprise, learn how to integrate with Front.</p>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-md-4 mb-7">
<!-- Icon Blocks -->
<div class="text-center px-lg-3">
<figure class="max-w-8rem mx-auto mb-4">
<img class="img-fluid" src="https://htmlstream.com/front/assets/svg/icons/icon-23.svg" alt="SVG">
</figure>
<h3>Accelerate your business</h3>
<p>We help power millions of businesses to built and run smoothly.</p>
</div>
<!-- End Icon Blocks -->
</div>
</div>
<img class="img-fluid d-none d-md-block w-75 mx-auto mb-7" src="https://htmlstream.com/front/assets/svg/components/three-pointers.svg" alt="SVG Arrow">
<!-- Title -->
<div class="w-md-60 w-lg-50 text-center mx-auto mb-7">
<p class="text-dark"><span class="font-weight-bold">It is fast and easy.</span> Create your first and ongoing website with Front.</p>
</div>
<!-- End Title -->
<!-- Browser Mockup -->
<div class="position-relative w-lg-75 mx-lg-auto mb-4 aos-init aos-animate" data-aos="fade-up">
<figure>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1109.8 797.1">
<path fill="#f9fbff" d="M105.1,267.1C35.5,331.5-3.5,423,0.3,517.7C6.1,663,111,831.9,588.3,790.8c753-64.7,481.3-358.3,440.4-398.3c-4-3.9-7.9-7.9-11.7-12L761.9,104.8C639.4-27.6,432.5-35.6,299.9,87L105.1,267.1z"></path>
</svg>
</figure>
<div class="device device-browser">
<img class="img-fluid" src="./assets/svg/components/browser.svg" alt="Image Description">
<img class="device-browser-screen" src="https://htmlstream.com/front/assets/img/855x665/img1.jpg" alt="Image Description">
</div>
</div>
<!-- End Browser Mockup -->
<div class="w-50 w-md-40 w-lg-30 text-center mx-auto">
<p class="small">We are launching soon. Join the priority list for information and early access.</p>
</div>
</div>
<!-- End Icon Blocks Section -->
<!-- Stats Section -->
<div class="bg-light rounded-lg mx-3 mx-md-8">
<div class="container space-2">
<div class="row justify-content-lg-center">
<div class="col-md-4 mb-7 mb-md-0">
<!-- Stats -->
<a class="d-block text-center px-md-3" href="#">
<img class="clients mb-3" src="https://htmlstream.com/front/assets/svg/clients-logo/slack-original.svg" alt="Image Description">
<span class="d-block h2">4.84 / 5</span>
<p class="text-body">based on more than 49 real user reviews on Bootstrap Themes</p>
</a>
<!-- End Stats -->
</div>
<div class="col-md-4 mb-7 mb-md-0">
<!-- Stats -->
<a class="d-block text-center column-divider-md column-divider-20deg px-md-3" href="#">
<img class="clients mb-3" src="https://htmlstream.com/front/assets/svg/clients-logo/fitbit-original.svg" alt="Image Description">
<span class="d-block h2">$25,000</span>
<p class="text-body">at your company's disposal after accepting your application</p>
</a>
<!-- End Stats -->
</div>
<div class="col-md-4">
<!-- Stats -->
<a class="d-block text-center column-divider-md column-divider-20deg px-md-3" href="#">
<img class="clients mb-3" src="https://htmlstream.com/front/assets/svg/clients-logo/hubspot-original.svg" alt="Image Description">
<span class="d-block h2">40,000+</span>
<p class="text-body">business owners use Front across all over the world</p>
</a>
<!-- End Stats -->
</div>
</div>
</div>
</div>
<!-- End Stats Section -->
<!-- Pricing Section -->
<div id="pricingSection" class="container space-top-2 space-top-lg-3">
<!-- Title -->
<div class="w-lg-65 text-center mx-auto mb-5 mb-sm-9">
<h2 class="h1">Scalable plans</h2>
<p>All kinds of plans that scale with your user growth</p>
</div>
<!-- End Title -->
<div class="w-lg-75 mx-lg-auto">
<div class="row align-items-sm-end mx-n2 mb-5 mb-md-7">
<div class="col-sm-6 col-md-4 px-2 mb-3 mb-md-0">
<!-- Pricing -->
<div class="card card-bordered shadow-none text-center aos-init" data-aos="fade-up" data-aos-delay="100">
<div class="card-body">
<figure class="text-center mb-2">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="60" height="60" viewBox="0 0 160 160">
<circle fill="#377DFF" opacity=".85" cx="80" cy="80" r="48"></circle>
</svg>
</figure>
<h4>Starter</h4>
<span class="text-dark font-size-2 font-weight-bold">Free</span>
</div>
<div class="card-body pt-0 pb-5 px-5">
<ul class="list-unstyled list-sm-article mb-4">
<li>Community support</li>
<li>400+ pages</li>
</ul>
<button type="button" class="btn btn-sm btn-block btn-soft-primary transition-3d-hover">Create Account</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 px-2 mb-3 mb-md-0">
<!-- Pricing -->
<div class="card card-bordered shadow-none text-center aos-init" data-aos="fade-up" data-aos-delay="50">
<div class="card-body">
<figure class="text-center mb-2">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="60" height="60" viewBox="0 0 160 160">
<circle fill="#377DFF" opacity=".85" cx="48" cy="80" r="48"></circle>
<circle fill="#377DFF" opacity=".85" cx="112" cy="80" r="48"></circle>
</svg>
</figure>
<h4>Individual</h4>
<span class="text-dark font-size-2 font-weight-bold">$59</span>
</div>
<div class="card-body pt-0 pb-5 px-5">
<ul class="list-unstyled list-sm-article mb-4">
<li>Community support</li>
<li>400+ pages</li>
<li>100+ header variations</li>
</ul>
<button type="button" class="btn btn-sm btn-block btn-primary transition-3d-hover">Try Free for 14 days</button>
</div>
</div>
<!-- End Pricing -->
</div>
<div class="col-sm-6 col-md-4 px-2">
<!-- Pricing -->
<div class="card card-bordered shadow-none text-center aos-init" data-aos="fade-up">
<div class="card-body">
<figure class="text-center mb-2">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="60" height="60" viewBox="0 0 160 160">
<circle fill="#377DFF" opacity=".85" cx="48" cy="53" r="48"></circle>
<circle fill="#377DFF" opacity=".85" cx="112" cy="53" r="48"></circle>
<circle fill="#377DFF" opacity=".85" cx="81" cy="107" r="48"></circle>
</svg>
</figure>
<h4>Enterprise</h4>
<span class="text-dark font-size-2 font-weight-bold">$599</span>
</div>
<div class="card-body pt-0 pb-5 px-5">
<ul class="list-unstyled list-sm-article mb-4">
<li>Community support</li>
<li>400+ pages</li>
<li>100+ header variations</li>
<li>20+ home page options</li>
</ul>
<button type="button" class="btn btn-sm btn-block btn-primary transition-3d-hover">Try Free for 14 days</button>
</div>
</div>
<!-- End Pricing -->
</div>
</div>
<!-- Link -->
<div class="text-center">
<a href="./page-careers.html">
Contact us for
<span class="btn btn-xs btn-icon btn-soft-primary rounded-circle mx-2">
<i class="fas fa-angle-right"></i>
</span>
custom plans
</a>
</div>
<!-- End Link -->
</div>
</div>
<!-- End Pricing Section -->
<!-- CTA Section -->
<div class="container space-2 space-lg-3">
<div class="bg-light rounded-lg overflow-hidden space-top-2 space-top-lg-1 pl-5 pl-md-8">
<div class="row justify-content-lg-between align-items-lg-center no-gutters">
<div class="col-lg-4">
<div class="mb-4">
<h2 class="h1">Get Front</h2>
<p>Building brands people can't live without is how our clients grow.</p>
</div>
<a class="btn btn-primary btn-wide transition-3d-hover" href="#">Try for Free</a>
</div>
<div class="col-lg-7 space-top-1 space-top-sm-2 ml-auto">
<div data-aos="fade-up" class="aos-init">
<img class="img-fluid shadow-lg" src="https://htmlstream.com/front/assets/img/755x470/img1.jpg" alt="Image Description">
</div>
</div>
</div>
</div>
</div>
<!-- End CTA Section -->
<!-- Testimonials Section -->
<div class="container space-bottom-2 space-bottom-lg-3">
<div class="w-lg-65 text-center mx-auto">
<div class="avatar avatar-lg avatar-circle mx-auto mb-5">
<img class="avatar-img" src="https://htmlstream.com/front/assets/img/100x100/img1.jpg" alt="Image Description">
</div>
<blockquote class="text-dark font-size-2 font-weight-bold text-lh-lg">The template is really nice and offers quite a large set of options. It's beautiful and the coding is done quickly and seamlessly. Thank you!</blockquote>
<div class="mt-5">
<span class="text-dark font-weight-bold">- Victoria,</span>
Product designer
</div>
</div>
</div>
<!-- End Testimonials Section -->
<!-- Events Section -->
<div id="eventsSection" class="bg-primary rounded-lg mx-3 mx-md-8">
<div class="container space-2 space-lg-3">
<!-- Title -->
<div class="w-lg-65 text-center text-white mx-auto mb-5 mb-sm-7">
<h2 class="h1 text-white">Front events</h2>
</div>
<!-- End Title -->
<!-- Nav -->
<div class="w-lg-65 mx-lg-auto mb-3">
<ul class="nav nav-border-white justify-content-center" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="pills-one-code-sample-tab" data-toggle="pill" href="#pills-one-code-sample" role="tab" aria-controls="pills-one-code-sample" aria-selected="true">
This week
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="pills-two-code-sample-tab" data-toggle="pill" href="#pills-two-code-sample" role="tab" aria-controls="pills-two-code-sample" aria-selected="false">
Next week
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="pills-three-code-sample-tab" data-toggle="pill" href="#pills-three-code-sample" role="tab" aria-controls="pills-three-code-sample" aria-selected="false">
This month
</a>
</li>
</ul>
</div>
<!-- End Nav -->
<!-- Tab Content -->
<div class="tab-content mb-5 mb-md-7">
<div class="tab-pane fade pt-5 show active" id="pills-one-code-sample" role="tabpanel" aria-labelledby="pills-one-code-sample-tab">
<!-- Table -->
<div class="table-responsive-lg">
<table class="table table-bordered table-light-bordered text-white">
<thead>
<tr>
<th scope="col">Calendar</th>
<th scope="col">Mon</th>
<th scope="col">Tue</th>
<th scope="col">Wed</th>
<th scope="col">Thr</th>
<th scope="col">Fri</th>
<th scope="col">Sat</th>
<th scope="col">Sun</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">12PM</th>
<td class="bg-white text-dark">
<span class="d-block font-weight-bold">How great leaders inspire action</span>
<span class="d-block">July 9, 2019</span>
</td>
<td></td>
<td>
<span class="d-block font-weight-bold">The power of introverts</span>
<span class="d-block">July 18 - 19, 2019</span>
</td>
<td></td>
<td></td>
<td></td>
<td class="bg-white text-dark">
<span class="d-block font-weight-bold">The happy secret to better work</span>
<span class="d-block">July 23, 2019</span>
</td>
</tr>
<tr>
<th scope="row">01PM</th>
<td></td>
<td>
<span class="d-block font-weight-bold">UI/UX</span>
<span class="d-block">July 31 - August 1, 2019</span>
</td>
<td></td>
<td></td>
<td></td>
<td>
<span class="d-block font-weight-bold">Front best of breed</span>
<span class="d-block">August 8, 2019</span>
</td>
<td></td>
</tr>
<tr>
<th scope="row">04PM</th>
<td></td>
<td></td>
<td></td>
<td class="bg-white text-dark">
<span class="d-block font-weight-bold">Why Front?</span>
<span class="d-block">October 20 - 24, 2019</span>
</td>
<td></td>
<td>
<span class="d-block font-weight-bold">Dubai Front Meetup</span>
<span class="d-block">October 28 - 31, 2019</span>
</td>
<td></td>
</tr>
<tr>
<th scope="row">06PM</th>
<td></td>
<td>
<span class="d-block font-weight-bold">Box world tour Tokyo</span>
<span class="d-block">November 3 - 7, 2019</span>
</td>
<td></td>
<td></td>
<td>
<span class="d-block font-weight-bold">Front in '19</span>
<span class="d-block">November 12 - 14, 2019</span>
</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<!-- End Table -->
</div>
<div class="tab-pane fade pt-5" id="pills-two-code-sample" role="tabpanel" aria-labelledby="pills-two-code-sample-tab">
<!-- Table -->
<div class="table-responsive-lg">
<table class="table table-bordered table-light-bordered text-white">
<thead>
<tr>
<th scope="col">Calendar</th>
<th scope="col">Mon</th>
<th scope="col">Tue</th>
<th scope="col">Wed</th>
<th scope="col">Thr</th>
<th scope="col">Fri</th>
<th scope="col">Sat</th>
<th scope="col">Sun</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">12PM</th>
<td>
<span class="d-block font-weight-bold">How great leaders inspire action</span>
<span class="d-block">July 9, 2019</span>
</td>
<td></td>
<td>
<span class="d-block font-weight-bold">The power of introverts</span>
<span class="d-block">July 18 - 19, 2019</span>
</td>
<td></td>
<td></td>
<td></td>
<td>
<span class="d-block font-weight-bold">The happy secret to better work</span>
<span class="d-block">July 23, 2019</span>
</td>
</tr>
<tr>
<th scope="row">01PM</th>
<td></td>
<td class="bg-white text-dark">
<span class="d-block font-weight-bold">UI/UX</span>
<span class="d-block">July 31 - August 1, 2019</span>
</td>
<td></td>
<td></td>
<td></td>
<td>
<span class="d-block font-weight-bold">Front best of breed</span>
<span class="d-block">August 8, 2019</span>
</td>
<td></td>
</tr>
<tr>
<th scope="row">04PM</th>
<td></td>
<td></td>
<td></td>
<td>
<span class="d-block font-weight-bold">Why Front?</span>
<span class="d-block">October 20 - 24, 2019</span>
</td>
<td></td>
<td>
<span class="d-block font-weight-bold">Dubai Front Meetup</span>
<span class="d-block">October 28 - 31, 2019</span>
</td>
<td></td>
</tr>
<tr>
<th scope="row">06PM</th>
<td></td>
<td>
<span class="d-block font-weight-bold">Box world tour Tokyo</span>
<span class="d-block">November 3 - 7, 2019</span>
</td>
<td></td>
<td></td>
<td class="bg-white text-dark">
<span class="d-block font-weight-bold">Front in '19</span>
<span class="d-block">November 12 - 14, 2019</span>
</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<!-- End Table -->
</div>
<div class="tab-pane fade pt-5" id="pills-three-code-sample" role="tabpanel" aria-labelledby="pills-three-code-sample-tab">
<!-- Table -->
<div class="table-responsive-lg">
<table class="table table-bordered table-light-bordered text-white">
<thead>
<tr>
<th scope="col">Calendar</th>
<th scope="col">Sep 6th</th>
<th scope="col">Sep 13th</th>
<th scope="col">Sep 19th</th>
<th scope="col">Sep 21th</th>
<th scope="col">Sep 25th</th>
<th scope="col">Sep 29th</th>
<th scope="col">Sep 30th</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">12PM</th>
<td>
<span class="d-block font-weight-bold">How great leaders inspire action</span>
<span class="d-block">July 9, 2019</span>
</td>
<td></td>
<td class="bg-white text-dark">
<span class="d-block font-weight-bold">The power of introverts</span>
<span class="d-block">July 18 - 19, 2019</span>
</td>
<td></td>
<td></td>
<td></td>
<td>
<span class="d-block font-weight-bold">The happy secret to better work</span>
<span class="d-block">July 23, 2019</span>
</td>
</tr>
<tr>
<th scope="row">01PM</th>
<td></td>
<td>
<span class="d-block font-weight-bold">UI/UX</span>
<span class="d-block">July 31 - August 1, 2019</span>
</td>
<td></td>
<td></td>
<td></td>
<td>
<span class="d-block font-weight-bold">Front best of breed</span>
<span class="d-block">August 8, 2019</span>
</td>
<td></td>
</tr>
<tr>
<th scope="row">04PM</th>
<td></td>
<td></td>
<td></td>
<td>
<span class="d-block font-weight-bold">Why Front?</span>
<span class="d-block">October 20 - 24, 2019</span>