-
Notifications
You must be signed in to change notification settings - Fork 31
/
form-general.html
896 lines (841 loc) · 59.9 KB
/
form-general.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="description" content="" >
<meta name="author" content="">
<meta name="keywords" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--Meta Responsive tag-->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--Bootstrap CSS-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!--Custom style.css-->
<link rel="stylesheet" href="assets/css/quicksand.css">
<link rel="stylesheet" href="assets/css/style.css">
<!--Font Awesome-->
<link rel="stylesheet" href="assets/css/fontawesome.css">
<!--Chartist CSS-->
<link rel="stylesheet" href="assets/css/chartist.min.css">
<!--Bootstrap Calendar-->
<link rel="stylesheet" href="assets/js/calendar/bootstrap_calendar.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<title>Sleek Admin</title>
</head>
<body>
<!--Page Wrapper-->
<div class="container-fluid">
<!--Header-->
<div class="row header shadow-sm">
<!--Logo-->
<div class="col-sm-3 pl-0 text-center header-logo">
<div class="bg-theme mr-3 pt-3 pb-2 mb-0">
<h3 class="logo"><a href="#" class="text-secondary logo"><i class="fa fa-rocket"></i> Sleek<span class="small">admin</span></a></h3>
</div>
</div>
<!--Logo-->
<!--Header Menu-->
<div class="col-sm-9 header-menu pt-2 pb-0">
<div class="row">
<!--Menu Icons-->
<div class="col-sm-4 col-8 pl-0">
<!--Toggle sidebar-->
<span class="menu-icon" onclick="toggle_sidebar()">
<span id="sidebar-toggle-btn"></span>
</span>
<!--Toggle sidebar-->
<!--Notification icon-->
<div class="menu-icon">
<a class="" href="#" onclick="toggle_dropdown(this); return false" role="button" class="dropdown-toggle">
<i class="fa fa-bell"></i>
<span class="badge badge-danger">5</span>
</a>
<div class="dropdown dropdown-left bg-white shadow border">
<a class="dropdown-item" href="#"><strong>Notifications</strong></a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<div class="align-self-center mr-3 rounded-circle notify-icon bg-primary">
<i class="fa fa-bookmark"></i>
</div>
<div class="media-body">
<h6 class="mt-0"><strong>Meeting</strong></h6>
<p>You have a meeting by 8:00</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<div class="align-self-center mr-3 rounded-circle notify-icon bg-secondary">
<i class="fa fa-link"></i>
</div>
<div class="media-body">
<h6 class="mt-0"><strong>Events</strong></h6>
<p>Launching new programme</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<div class="align-self-center mr-3 rounded-circle notify-icon bg-warning">
<i class="fa fa-user"></i>
</div>
<div class="media-body">
<h6 class="mt-0"><strong>Personnel</strong></h6>
<p>New employee arrival</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-center link-all" href="#">See all notifications ></a>
</div>
</div>
<!--Notication icon-->
<!--Inbox icon-->
<span class="menu-icon inbox">
<a class="" href="#" role="button" id="dropdownMenuLink3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-envelope"></i>
<span class="badge badge-danger">4</span>
</a>
<div class="dropdown-menu dropdown-menu-left mt-10 animated zoomInDown" aria-labelledby="dropdownMenuLink3">
<a class="dropdown-item" href="#"><strong>Unread messages</strong></a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<img class="align-self-center mr-3 rounded-circle" src="assets/img/profile.jpg" width="50px" height="50px" alt="Generic placeholder image">
<div class="media-body">
<h6 class="mt-0"><strong>Adam Abdulrahman</strong></h6>
<p>How are you?</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<img class="align-self-center mr-3 rounded-circle" src="assets/img/profile.jpg" width="50px" height="50px" alt="Generic placeholder image">
<div class="media-body">
<h6 class="mt-0"><strong>Adam Abdulrahman</strong></h6>
<p>How are you?</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<img class="align-self-center mr-3 rounded-circle" src="assets/img/profile.jpg" width="50px" height="50px" alt="Generic placeholder image">
<div class="media-body">
<h6 class="mt-0"><strong>Adam Abdulrahman</strong></h6>
<p>How are you?</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-center link-all" href="#">View all messages</a>
</div>
</span>
<!--Inbox icon-->
<span class="menu-icon">
<i class="fa fa-th-large"></i>
</span>
</div>
<!--Menu Icons-->
<!--Search box and avatar-->
<div class="col-sm-8 col-4 text-right flex-header-menu justify-content-end">
<div class="search-rounded mr-3">
<input type="text" class="form-control search-box" placeholder="Enter keywords.." />
</div>
<div class="mr-4">
<a class="" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="assets/img/profile.jpg" alt="Adam" class="rounded-circle" width="40px" height="40px">
</a>
<div class="dropdown-menu dropdown-menu-right mt-13" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="#"><i class="fa fa-user pr-2"></i> Profile</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#"><i class="fa fa-th-list pr-2"></i> Tasks</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#"><i class="fa fa-book pr-2"></i> Projects</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#"><i class="fa fa-power-off pr-2"></i> Logout</a>
</div>
</div>
</div>
<!--Search box and avatar-->
</div>
</div>
<!--Header Menu-->
</div>
<!--Header-->
<!--Main Content-->
<div class="row main-content">
<!--Sidebar left-->
<div class="col-sm-3 col-xs-6 sidebar pl-0">
<div class="inner-sidebar mr-3">
<!--Image Avatar-->
<div class="avatar text-center">
<img src="assets/img/client-img4.png" alt="" class="rounded-circle" />
<p><strong>Jonathan Clarke</strong></p>
<span class="text-primary small"><strong>UI/UX Designer</strong></span>
</div>
<!--Image Avatar-->
<!--Sidebar Navigation Menu-->
<div class="sidebar-menu-container">
<ul class="sidebar-menu mt-4 mb-4">
<li class="parent">
<a href="#" onclick="toggle_menu('dashboard'); return false" class=""><i class="fa fa-dashboard mr-3"> </i>
<span class="none">Dashboard <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="dashboard">
<li class="child"><a href="index.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Default</a></li>
<li class="child"><a href="index2.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Analytics</a></li>
<li class="child"><a href="index3.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Ecommerce</a></li>
<li class="child"><a href="index4.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Cryptocurrency</a></li>
</ul>
</li>
</li>
<li class="parent">
<a href="widgets.html" class=""><i class="fa fa-puzzle-piece mr-3"></i>
<span class="none">Widget </span>
</a>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('ul_element'); return false" class=""><i class="fa fa-puzzle-piece mr-3"></i>
<span class="none">UI Elements <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="ul_element">
<li class="child"><a href="accordion.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Accordions</a></li>
<li class="child"><a href="buttons.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Buttons</a></li>
<li class="child"><a href="badges.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Badges</a></li>
<li class="child"><a href="breadcrumb.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Breadcrumbs</a></li>
<li class="child"><a href="cards.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Cards</a></li>
<li class="child"><a href="icons.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Icons</a></li>
<li class="child"><a href="modal.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Modals</a></li>
<li class="child"><a href="notification.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Notification</a></li>
<li class="child"><a href="progressbar.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Progressbar</a></li>
<li class="child"><a href="sweetalert.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Sweet alert</a></li>
<li class="child"><a href="tabs.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Tabs</a></li>
<li class="child"><a href="tooltip-popover.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Tooltip and Popovers</a></li>
<li class="child"><a href="typography.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Typography</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('form_element'); return false" class=""><i class="fa fa-pencil-square mr-3"></i>
<span class="none">Form Elements <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="form_element">
<li class="child"><a href="form-general.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Basic Elements</a></li>
<li class="child"><a href="form-advanced.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Advanced Elements</a></li>
<li class="child"><a href="form-validation.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Validation</a></li>
<li class="child"><a href="form-wizard.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Form Wizard</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('editors'); return false" class=""><i class="fa fa-pencil-square-o mr-3"></i>
<span class="none">Text Editors <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="editors">
<li class="child"><a href="ckeditor-classic.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Ckeditor classic</a></li>
<li class="child"><a href="ckeditor-inline.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Ckeditor inline</a></li>
<li class="child"><a href="ckeditor-document.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Ckeditor document</a></li>
<li class="child"><a href="summernote.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Summernote editor</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('tables'); return false" class=""><i class="fa fa-pencil-square mr-3"></i>
<span class="none">Tables <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="tables">
<li class="child"><a href="basic-tables.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Basic Tables</a></li>
<li class="child"><a href="datatable.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Datatables</a></li>
<li class="child"><a href="jsgrid-table.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> JSGrid Tables</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('charts'); return false" class=""><i class="fa fa-pie-chart mr-3"></i>
<span class="none">Charts <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="charts">
<li class="child"><a href="chart.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Chart JS</a></li>
<li class="child"><a href="chartist.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Chartist JS</a></li>
<li class="child"><a href="echarts.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Echarts JS</a></li>
<li class="child"><a href="flot.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Flot JS</a></li>
<li class="child"><a href="morris.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Morris JS</a></li>
<li class="child"><a href="nvd3.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> NVD3 JS</a></li>
<li class="child"><a href="sparkline.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Sparkline JS</a></li>
</ul>
</li>
<li class="parent">
<a href="icons.html" class=""><i class="fa fa-toggle-on mr-3"></i>
<span class="none">Icons</span>
</a>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('ecommerce'); return false" class=""><i class="fa fa-shopping-cart mr-3"></i>
<span class="none">Ecommerce <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="ecommerce">
<li class="child"><a href="products.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> ProductList</a></li>
<li class="child"><a href="product-detail.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> ProductDetail</a></li>
<li class="child"><a href="orders.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> OrderList</a></li>
<li class="child"><a href="invoice.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Invoice</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('maps'); return false" class=""><i class="fa fa-map mr-3"></i>
<span class="none">Maps <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="maps">
<li class="child"><a href="jvector-maps.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Jvector Maps</a></li>
<li class="child"><a href="google-maps.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Google Maps</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('pages'); return false" class=""><i class="fa fa-file mr-3"></i>
<span class="none">Pages <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="pages">
<li class="child"><a href="email-inbox.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Email-Inbox</a></li>
<li class="child"><a href="email.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Email-Compose</a></li>
<li class="child"><a href="login.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Login</a></li>
<li class="child"><a href="register.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Signup</a></li>
<li class="child"><a href="lockscreen.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Lock Screen</a></li>
<li class="child"><a href="forgot-password.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Forgot Password</a></li>
<li class="child"><a href="profile.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Profile</a></li>
<li class="child"><a href="gallery.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Gallery</a></li>
<li class="child"><a href="invoice.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Invoice</a></li>
<li class="child"><a href="search-result.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Search</a></li>
<li class="child"><a href="pricing.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Pricing</a></li>
<li class="child"><a href="blank.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Blank Page</a></li>
<li class="child"><a href="error-404.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Error 404</a></li>
<li class="child"><a href="error-500.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Error 500</a></li>
<li class="child"><a href="error-504.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Error 504</a></li>
</ul>
</li>
<li class="parent">
<a href="fullcalendar.html" class=""><i class="fa fa-calendar-o mr-3"> </i>
<span class="none">Full Calendar </span>
</a>
</li>
</ul>
</div>
<!--Sidebar Naigation Menu-->
</div>
</div>
<!--Sidebar left-->
<!--Content right-->
<div class="col-sm-9 col-xs-12 content pt-3 pl-0">
<h5 class="mb-0" ><strong>Basic elements</strong></h5>
<span class="text-secondary">Dashboard <i class="fa fa-angle-right"></i> basic elements</span>
<div class="row mt-3">
<div class="col-sm-12">
<!--Default elements-->
<div class="mt-1 mb-3 p-3 button-container bg-white border shadow-sm">
<h6 class="mb-2">Basic input types</h6>
<p>use class <span class="text-danger">.form-control</span> with input</p>
<form class="form-horizontal mt-4 mb-5">
<div class="form-group row">
<label class="control-label col-sm-2" for="input-1">Default Input</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="input-1" placeholder="John Doe" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-2">Email</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="input-2" placeholder="johndoe@gmail.com" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-3">Search</label>
<div class="col-sm-10">
<input type="search" class="form-control" id="input-3" placeholder="Search keywords" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-4">Number</label>
<div class="col-sm-10">
<input type="number" value="34" id="input-4" class="form-control" placeholder="number" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-5">Date</label>
<div class="col-sm-10">
<input type="date" class="form-control" id="input-5" placeholder="11/11/2019" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-6">Max Characters</label>
<div class="col-sm-10">
<input type="text" maxlength="5" class="form-control" id="input-6" placeholder="Maximum characters allowed is 5" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-7">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="input-7" placeholder="*********" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-8">Predefined Value</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="input-8" value="Predefined set value" placeholder="" />
</div>
</div>
<div class="form-group row">
<label for="exampleFormControlSelect1" class="control-label col-sm-2">Example select</label>
<div class="col-sm-10">
<select class="form-control" id="exampleFormControlSelect1">
<option>Choose ...</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="exampleFormControlFile1">File input</label>
<div class="col-sm-10">
<input type="file" class="form-control" id="exampleFormControlFile1">
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-9">Read Only Field</label>
<div class="col-sm-10">
<input type="text" readonly class="form-control" id="input-9" placeholder="read only" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-10">Disabled Field</label>
<div class="col-sm-10">
<input type="text" disabled class="form-control" id="input-10" placeholder="Disabled" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2" for="input-11">Textarea</label>
<div class="col-sm-10">
<textarea rows="5" class="form-control" id="input-11" placeholder="Default Textarea"></textarea>
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-2 mt-3" for="formControlRange">Range</label>
<div class="col-sm-10">
<input type="range" class="custom-range" min="0" max="5" step="0.5" id="customRange3">
</div>
</div>
<div class="form-group row">
<div class="col-sm-6 col-12">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="customCheck1">
<label class="custom-control-label" for="customCheck1">Check this custom checkbox</label>
</div>
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="customCheck2">
<label class="custom-control-label" for="customCheck2">Check this custom checkbox</label>
</div>
</div>
<div class="col-sm-6 col-12">
<div class="custom-control custom-radio">
<input type="radio" class="custom-control-input" name="customradio" id="customeradio1">
<label class="custom-control-label" for="customeradio1">Check this custom radio</label>
</div>
<div class="custom-control custom-radio">
<input type="radio" class="custom-control-input" id="customeradio2">
<label class="custom-control-label" name="customradio" for="customeradio2">Check this custom radio</label>
</div>
</div>
</div>
</form>
<div class="dropdown-divider"></div>
<div class="row mt-4">
<div class="col-sm-6 col-12 mb-3">
<h6 class="mb-3">Input sizes</h6>
<form action="">
<div class="form-group">
<input class="form-control form-control-lg" type="text" placeholder=".form-control-lg">
</div>
<div class="form-group">
<input class="form-control w-75" type="text" placeholder="Default input">
</div>
<div class="form-group">
<input class="form-control form-control-sm w-50" type="text" placeholder=".form-control-sm">
</div>
</form>
</div>
<div class="col-sm-6 col-12 mb-3">
<h6 class="mb-3">Color inputs</h6>
<form action="">
<div class="form-group">
<input class="form-control form-control-primary" type="text" placeholder=".form-control-primary">
</div>
<div class="form-group row">
<div class="col-sm-6 col-12">
<input class="form-control form-control-danger" type="text" placeholder=".form-control-danger">
</div>
<div class="col-sm-6 col-12">
<input class="form-control form-control-warning" type="text" placeholder=".form-control-warning">
</div>
</div>
<div class="form-group row">
<div class="col-sm-6 col-12">
<input class="form-control form-control-success" type="text" placeholder=".form-control-success">
</div>
<div class="col-sm-6 col-12">
<input class="form-control form-control-info" type="text" placeholder=".form-control-info">
</div>
</div>
</form>
</div>
</div>
<div class="dropdown-divider"></div>
<div class="row mt-4">
<div class="col-sm-6 col-12 mb-3">
<h6 class="mb-3">Text color</h6>
<form action="">
<div class="form-group">
<input class="form-control text-primary" type="text" placeholder=".text-primary">
</div>
<div class="form-group row">
<div class="col-sm-6 col-12">
<input class="form-control text-danger" type="text" placeholder=".text-danger">
</div>
<div class="col-sm-6 col-12">
<input class="form-control text-warning" type="text" placeholder=".text-warning">
</div>
</div>
<div class="form-group row">
<div class="col-sm-6 col-12">
<input class="form-control text-success" type="text" placeholder=".text-success">
</div>
<div class="col-sm-6 col-12">
<input class="form-control text-info" type="text" placeholder=".text-info">
</div>
</div>
</form>
</div>
<div class="col-sm-6 col-12 mb-3">
<h6 class="mb-3">Background color</h6>
<form action="">
<div class="form-group">
<input class="form-control fc-bg-primary" type="text" placeholder=".fc-bg-primary">
</div>
<div class="form-group row">
<div class="col-sm-6 col-12">
<input class="form-control fc-bg-danger" type="text" placeholder=".fc-bg-danger">
</div>
<div class="col-sm-6 col-12">
<input class="form-control fc-bg-warning" type="text" placeholder=".fc-bg-warning">
</div>
</div>
<div class="form-group row">
<div class="col-sm-6 col-12">
<input class="form-control fc-bg-success" type="text" placeholder=".fc-bg-success">
</div>
<div class="col-sm-6 col-12">
<input class="form-control fc-bg-info" type="text" placeholder=".fc-bg-info">
</div>
</div>
</form>
</div>
</div>
</div>
<!--/Default elements-->
<!--Form grid-->
<div class="mt-4 mb-3 p-3 button-container bg-white border shadow-sm">
<h6 class="mb-2">Form input grid</h6>
<p>use class <span class="text-danger">.row with .form-group</span> and wrap input inside <span class="text-danger">.col-*-*</span> div</p>
<form action="">
<div class="form-group row">
<div class="col-sm-2">
<input class="form-control" type="text" placeholder="col-sm-2">
</div>
<div class="col-sm-10">
<input class="form-control" type="text" placeholder="col-sm-10">
</div>
</div>
<div class="form-group row">
<div class="col-sm-3">
<input class="form-control" type="text" placeholder="col-sm-3">
</div>
<div class="col-sm-9">
<input class="form-control" type="text" placeholder="col-sm-9">
</div>
</div>
<div class="form-group row">
<div class="col-sm-4">
<input class="form-control" type="text" placeholder="col-sm-4">
</div>
<div class="col-sm-8">
<input class="form-control" type="text" placeholder="col-sm-8">
</div>
</div>
<div class="form-group row">
<div class="col-sm-5">
<input class="form-control" type="text" placeholder="col-sm-5">
</div>
<div class="col-sm-7">
<input class="form-control" type="text" placeholder="col-sm-7">
</div>
</div>
<div class="form-group row">
<div class="col-sm-6">
<input class="form-control" type="text" placeholder="col-sm-6">
</div>
<div class="col-sm-6">
<input class="form-control" type="text" placeholder="col-sm-6">
</div>
</div>
<div class="form-group row">
<div class="col-sm-12">
<input class="form-control" type="text" placeholder="col-sm-12">
</div>
</div>
</form>
</div>
<!--Form grid-->
<!--Validation states-->
<div class="mt-4 mb-3 p-3 button-container bg-white border shadow-sm">
<h6 class="mb-3">Validation states</h6>
<form action="">
<div class="form-group row">
<label for="" class="col-sm-3">Input with success</label>
<div class="col-sm-9">
<input class="form-control form-control-success" type="text" placeholder="Valid">
<small class="text-success bc-description">Data valid success!</small>
</div>
</div>
<div class="form-group row">
<label for="" class="col-sm-3">Input with danger</label>
<div class="col-sm-9">
<input class="form-control form-control-danger" type="text" placeholder="Invalid">
<small class="text-danger bc-description">Data invalid error!</small>
</div>
</div>
<div class="form-group row">
<label for="" class="col-sm-3">Input with warning</label>
<div class="col-sm-9">
<input class="form-control form-control-warning" type="text" placeholder="Warning">
<small class="text-warning bc-description">Data valid but has problem, warning!</small>
</div>
</div>
</form>
</div>
<!--Validation states-->
<!--Input group-->
<div class="mt-4 mb-3 p-3 button-container bg-white border shadow-sm">
<h6 class="mb-2">Input group</h6>
<p class="mt-1 mb-2">Bootstrap input group elements</p>
<form action="">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon1">@</span>
</div>
<input type="text" class="form-control mt-0" placeholder="Username" aria-label="Username" aria-describedby="basic-addon1">
</div>
<div class="input-group mb-3">
<input type="text" class="form-control mt-0" placeholder="Recipient's username" aria-label="Recipient's username" aria-describedby="basic-addon2">
<div class="input-group-append">
<span class="input-group-text" id="basic-addon2">@example.com</span>
</div>
</div>
<label for="basic-url">Your vanity URL</label>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon3">https://example.com/users/</span>
</div>
<input type="text" class="form-control mt-0" id="basic-url" aria-describedby="basic-addon3">
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">$</span>
</div>
<input type="text" class="form-control mt-0" aria-label="Amount (to the nearest dollar)">
<div class="input-group-append">
<span class="input-group-text">.00</span>
</div>
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">With textarea</span>
</div>
<textarea class="form-control mt-0" aria-label="With textarea"></textarea>
</div>
<label for="">Checkbox and Radio</label>
<div class="row">
<div class="col-sm-6">
<div class="input-group mb-3">
<div class="input-group-prepend">
<div class="input-group-text">
<label class="custom-control custom-checkbox mb-0">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-label ml-2"></span>
</label>
</div>
</div>
<input type="text" class="form-control" aria-label="Text input with checkbox" placeholder="Text input with checkbox">
</div>
</div>
<div class="col-sm-6">
<div class="input-group mb-3">
<div class="input-group-prepend">
<div class="input-group-text">
<label class="custom-control custom-radio mb-0">
<input type="radio" class="custom-control-input">
<span class="custom-control-label ml-2"></span>
</label>
</div>
</div>
<input type="text" class="form-control" aria-label="Text input with radio" placeholder="Text input with radio">
</div>
</div>
</div>
<label for="">Button addons</label>
<div class="row">
<div class="col-sm-6">
<div class="input-group mb-3">
<div class="input-group-prepend">
<button class="btn btn-primary" type="button" id="button-addon1">Button</button>
</div>
<input type="text" class="form-control" placeholder="" aria-label="Example text with button addon" aria-describedby="button-addon1">
</div>
</div>
<div class="col-sm-6">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Recipient's username" aria-label="Recipient's username" aria-describedby="button-addon2">
<div class="input-group-append">
<button class="btn btn-danger" type="button" id="button-addon2">Button</button>
</div>
</div>
</div>
</div>
<label for="">Button with dropdowns</label>
<div class="input-group mb-3">
<div class="input-group-prepend">
<button class="btn btn-success dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Dropdown</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
<div role="separator" class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Separated link</a>
</div>
</div>
<input type="text" class="form-control" aria-label="Text input with dropdown button">
</div>
</form>
</div>
<!--/Input group-->
<div class="row">
<!--Vertical forms-->
<div class="col-sm-6">
<div class="mt-4 mb-3 p-3 button-container bg-white border shadow-sm">
<h6 class="mb-2">Basic vertical form</h6>
<form action="">
<div class="form-group">
<label for="email-vr" class="mb-0">Email</label>
<input type="text" id="email-vr" class="form-control" placeholder="johndoe@gmail.com" />
</div>
<div class="form-group">
<label for="pass-vr" class="mb-0">Password</label>
<input type="password" id="pass-vr" class="form-control" placeholder="********" />
</div>
<div class="form-group">
<div class="custom-control custom-checkbox">
<input type="checkbox" checked class="custom-control-input" id="check1">
<label class="custom-control-label" for="check1">Check this</label>
</div>
</div>
<div class="form-group">
<button type="button" class="btn btn-primary">Submit</button>
</div>
</form>
</div>
</div>
<!--/Vertical form-->
<!--Horizontal form-->
<div class="col-sm-6">
<div class="mt-4 mb-3 p-3 button-container bg-white border shadow-sm">
<h6 class="mb-4">Horizontal form</h6>
<form action="">
<div class="form-group row">
<label class="control-label col-sm-3" for="email-hr">Email</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="email-hr" placeholder="johndoe@gmail.com" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-3" for="pass-hr">Password</label>
<div class="col-sm-9">
<input type="password" class="form-control" id="pass-hr" placeholder="********" />
</div>
</div>
<div class="form-group row">
<div class="offset-sm-3 col-sm-9">
<div class="custom-control custom-checkbox">
<input type="checkbox" checked class="custom-control-input" id="check2">
<label class="custom-control-label" for="check2">Check this</label>
</div>
</div>
</div>
<div class="form-group row">
<div class="offset-sm-3 col-sm-9">
<button type="button" class="btn btn-secondary">Login</button>
</div>
</div>
</form>
</div>
</div>
<!--/Horizontal form-->
</div>
</div>
</div>
<!--Footer-->
<div class="row mt-5 mb-4 footer">
<div class="col-sm-8">
<span>© All rights reserved 2019 designed by <a class="text-info" href="#">A-Fusion</a></span>
</div>
<div class="col-sm-4 text-right">
<a href="#" class="ml-2">Contact Us</a>
<a href="#" class="ml-2">Support</a>
</div>
</div>
<!--Footer-->
</div>
</div>
<!--Main Content-->
</div>
<!--Page Wrapper-->
<!-- Page JavaScript Files-->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery-1.12.4.min.js"></script>
<!--Popper JS-->
<script src="assets/js/popper.min.js"></script>
<!--Bootstrap-->
<script src="assets/js/bootstrap.min.js"></script>
<!--Sweet alert JS-->
<script src="assets/js/sweetalert.js"></script>
<!--Progressbar JS-->
<script src="assets/js/progressbar.min.js"></script>
<!--Charts-->
<!--Canvas JS-->
<script src="assets/js/charts/canvas.min.js"></script>
<!--Bootstrap Calendar JS-->
<script src="assets/js/calendar/bootstrap_calendar.js"></script>
<script src="assets/js/calendar/demo.js"></script>
<!--Bootstrap Calendar-->
<!--Custom Js Script-->
<script src="assets/js/custom.js"></script>
<!--Custom Js Script-->
</body>
</html>