-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform-setup.html
More file actions
1245 lines (1112 loc) · 86.3 KB
/
form-setup.html
File metadata and controls
1245 lines (1112 loc) · 86.3 KB
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">
<!--begin::Head-->
<head><base href="">
<meta charset="utf-8" />
<title>Metronic | Wizard 2</title>
<meta name="description" content="Wizard examples" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!--begin::Fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" />
<!--end::Fonts-->
<!--begin::Page Custom Styles(used by this page)-->
<link href="assets/css/pages/wizard/wizard-2.css?v=7.0.5" rel="stylesheet" type="text/css" />
<!--end::Page Custom Styles-->
<!--begin::Global Theme Styles(used by all pages)-->
<link href="assets/plugins/global/plugins.bundle.css?v=7.0.5" rel="stylesheet" type="text/css" />
<link href="assets/plugins/custom/prismjs/prismjs.bundle.css?v=7.0.5" rel="stylesheet" type="text/css" />
<link href="assets/css/style.bundle.css?v=7.0.5" rel="stylesheet" type="text/css" />
<!--end::Global Theme Styles-->
<!--begin::Layout Themes(used by all pages)-->
<link href="assets/css/themes/layout/header/base/light.css?v=7.0.5" rel="stylesheet" type="text/css" />
<link href="assets/css/themes/layout/header/menu/light.css?v=7.0.5" rel="stylesheet" type="text/css" />
<link href="assets/css/themes/layout/brand/dark.css?v=7.0.5" rel="stylesheet" type="text/css" />
<link href="assets/css/themes/layout/aside/dark.css?v=7.0.5" rel="stylesheet" type="text/css" />
<!--end::Layout Themes-->
<link rel="shortcut icon" href="assets/media/logos/favicon.ico" />
<link rel="stylesheet" type="text/css" href="custom.css" />
</head>
<!--end::Head-->
<!--begin::Body-->
<body id="kt_body" class="header-fixed header-mobile-fixed subheader-enabled subheader-fixed aside-minimize-hoverable page-loading">
<!--begin::Main-->
<div class="d-flex flex-column flex-root">
<!--begin::Page-->
<div class="d-flex flex-row flex-column-fluid page">
<!--begin::Wrapper-->
<div class="d-flex flex-column flex-row-fluid wrapper" id="kt_wrapper">
<!--begin::Content-->
<div class="content d-flex flex-column flex-column-fluid" id="kt_content">
<!--begin::Entry-->
<div class="d-flex flex-column-fluid">
<!--begin::Container-->
<div class="container">
<div class="card card-custom">
<div class="card-header">
<div class="card-title">
<h4>Creat Event</h4>
</div>
</div>
<div class="card-body p-0">
<!--begin: Wizard-->
<div class="wizard wizard-2" id="kt_wizard_v2" data-wizard-state="step-first" data-wizard-clickable="false">
<!--begin: Wizard Nav-->
<div class="wizard-nav border-right py-8 px-8 py-lg-20 px-lg-10">
<!--begin::Wizard Step 1 Nav-->
<div class="wizard-steps">
<div class="wizard-step" data-wizard-type="step" data-wizard-state="current">
<div class="wizard-wrapper">
<div class="wizard-icon">
<span class="svg-icon svg-icon-2x">
<!--begin::Svg Icon | path:assets/media/svg/icons/General/User.svg-->
<svg width="27" height="30" viewBox="0 0 27 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M21.2942 9.47609L22.4793 5.74011C22.5603 5.48479 22.5006 5.20761 22.3235 5.01686C22.1464 4.82611 21.889 4.76188 21.6521 4.849L20.6757 5.20835C20.4685 5.28465 20.3579 5.52738 20.4287 5.75053C20.4996 5.97379 20.7249 6.09285 20.932 6.01661L21.6358 5.75759L20.5221 9.26826C20.4584 9.46891 20.4817 9.68716 20.5859 9.86698L22.4609 13.1019L18.8494 12.7976C18.6097 12.7767 18.3811 12.8996 18.2513 13.1164L16.4221 16.1662L15.4913 12.8454C15.4282 12.6198 15.2655 12.4444 15.0559 12.3762L11.9728 11.3736L14.8042 9.40326C15.0055 9.26313 15.1188 9.01624 15.1001 8.7591L14.8176 4.86893L17.821 6.88864C17.9878 7.00064 18.1904 7.02569 18.3765 6.95719L19.3298 6.60633C19.537 6.53009 19.6476 6.2873 19.5768 6.06421C19.506 5.841 19.2804 5.72166 19.0735 5.79819L18.1837 6.12564L14.9999 3.98466C14.79 3.84356 14.5284 3.84168 14.3169 3.97987C14.1054 4.11812 13.986 4.369 14.0052 4.63468L14.303 8.73525L11.2859 10.8348C11.0702 10.9849 10.9585 11.2484 10.9943 11.5223C11.0302 11.7963 11.2052 12.0162 11.4512 12.0961L13.2241 12.6727L3.81632 22.8061C3.66149 22.9729 3.66149 23.2432 3.81632 23.41C3.89376 23.4934 3.99525 23.5351 4.0967 23.5351C4.19814 23.5351 4.29963 23.4934 4.37707 23.41L14.0855 12.9527L14.7541 13.1702L14.956 13.8904L11.9917 17.0835C11.8368 17.2503 11.8368 17.5206 11.9917 17.6874C12.0691 17.7708 12.1706 17.8125 12.272 17.8125C12.3735 17.8125 12.475 17.7708 12.5524 17.6874L15.2161 14.8182L15.7513 16.728C15.8255 16.9928 16.0297 17.1814 16.284 17.2201C16.3155 17.2248 16.3468 17.2272 16.3778 17.2272C16.5973 17.2272 16.8002 17.1096 16.9223 16.906L18.8715 13.6561L22.6784 13.9769C22.925 13.9974 23.1579 13.8691 23.2862 13.6412C23.4146 13.4134 23.4129 13.1315 23.2819 12.9055L21.2942 9.47609Z" fill="#3699FF"/>
<path d="M10.7949 18.3725L1.86722 27.989C1.60862 28.2675 1.20296 28.284 0.962868 28.0254C0.722824 27.7669 0.737995 27.3299 0.996699 27.0513L3.18035 24.6992C3.33518 24.5324 3.33518 24.262 3.18035 24.0952C3.02547 23.9285 2.77448 23.9285 2.61965 24.0952L0.435944 26.4473C-0.131841 27.0589 -0.147012 28.0377 0.402219 28.6293C0.670808 28.9186 1.02535 29.0625 1.38401 29.0625C1.7587 29.0625 2.13787 28.9054 2.42798 28.5929L11.3556 18.9765C11.5105 18.8096 11.5105 18.5393 11.3556 18.3725C11.2008 18.2058 10.9498 18.2058 10.7949 18.3725Z" fill="#3699FF"/>
<path d="M8.50957 8.93495C8.60187 8.98824 8.70479 9.01529 8.80803 9.01529C8.87532 9.01529 8.94288 9.00379 9.00753 8.98044L10.5697 8.41725C10.7753 8.34323 10.9293 8.16381 10.9816 7.93725C11.034 7.71074 10.9762 7.47444 10.827 7.30522L9.65873 5.98012C9.43073 5.72133 9.05309 5.69667 8.7992 5.92409L8.79925 5.92403C7.95479 6.67997 8.00617 7.74901 8.19795 8.51268C8.24325 8.69289 8.3568 8.84675 8.50957 8.93495ZM9.19402 6.69335L10.0765 7.6944L8.92242 8.11046C8.83388 7.67464 8.8104 7.12614 9.19402 6.69335Z" fill="#3699FF"/>
<path d="M17.235 2.91808C17.3537 3.10199 17.5456 3.20961 17.7523 3.20961C17.7609 3.20961 17.7696 3.20944 17.7783 3.20904C17.9949 3.19959 18.1892 3.07347 18.2981 2.87167L19.1507 1.29177C19.3171 0.983382 19.233 0.586228 18.9593 0.387622C18.9593 0.387622 18.9593 0.387565 18.9593 0.387565C18.0485 -0.273049 17.1105 0.0802619 16.484 0.492961C16.3362 0.59027 16.2309 0.750897 16.1952 0.93356C16.1596 1.11599 16.1958 1.30834 16.2946 1.46122L17.235 2.91808ZM18.3847 1.01174L17.7405 2.20519L17.0458 1.12898C17.4093 0.915054 17.8914 0.736776 18.3847 1.01174Z" fill="#3699FF"/>
<path d="M12.9473 2.73535C13.0256 2.83978 13.1402 2.89393 13.2558 2.89393C13.3433 2.89393 13.4314 2.86284 13.5048 2.79895C13.6751 2.65068 13.7016 2.38181 13.5639 2.19841L12.8416 1.23608C12.704 1.05267 12.4543 1.02415 12.284 1.17247C12.1137 1.32074 12.0873 1.58961 12.225 1.77302L12.9473 2.73535Z" fill="#3699FF"/>
<path d="M20.2364 17.4406C20.0792 17.28 19.8599 17.2177 19.6495 17.274C19.4392 17.3304 19.2726 17.4963 19.2039 17.7176L18.6811 19.4004C18.6262 19.5769 18.6416 19.7723 18.7232 19.9366C18.8051 20.1012 18.9479 20.2235 19.1153 20.2724C19.4213 20.3615 19.6958 20.3999 19.942 20.3999C20.7286 20.3999 21.2234 20.0071 21.5185 19.6247C21.7295 19.3513 21.7067 18.9446 21.4665 18.6989L20.2364 17.4406ZM19.4888 19.492L19.8751 18.2488L20.8045 19.1995C20.4026 19.6128 19.8933 19.5875 19.4888 19.492Z" fill="#3699FF"/>
<path d="M26.6593 8.68088C26.6593 8.68083 26.6593 8.68083 26.6593 8.68088C26.4749 8.38593 26.1063 8.29546 25.8198 8.47465L24.3531 9.39314C24.1658 9.51044 24.0487 9.71969 24.04 9.95297C24.0312 10.1862 24.1322 10.405 24.3101 10.5381L25.6624 11.5511C25.7687 11.6307 25.8953 11.6726 26.0233 11.6726C26.0664 11.6726 26.1097 11.6678 26.1523 11.6582C26.3219 11.6198 26.4711 11.5064 26.5614 11.3472C27.2558 10.1245 26.9979 9.22238 26.6593 8.68088ZM25.9711 10.7419L24.9719 9.99351L26.0799 9.29964C26.3353 9.83118 26.1697 10.3504 25.9711 10.7419Z" fill="#3699FF"/>
<path d="M25.8708 15.2706L24.9774 14.4925C24.807 14.3442 24.5575 14.3727 24.4199 14.5561C24.2822 14.7395 24.3087 15.0084 24.4789 15.1567L25.3723 15.9347C25.4457 15.9986 25.5338 16.0297 25.6213 16.0297C25.737 16.0297 25.8515 15.9755 25.9299 15.8711C26.0676 15.6877 26.0412 15.4188 25.8708 15.2706Z" fill="#3699FF"/>
<path d="M24.9279 2.43306C24.7783 2.26087 24.5274 2.25171 24.3675 2.41296L23.3764 3.41174C23.2165 3.57288 23.2081 3.84311 23.3577 4.01536C23.4358 4.10521 23.5414 4.15064 23.6474 4.15064C23.7444 4.15064 23.8417 4.11249 23.9181 4.03545L24.9092 3.03668C25.0691 2.87548 25.0775 2.60524 24.9279 2.43306Z" fill="#3699FF"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="27" height="29.0422" fill="white" transform="translate(0 0.0204163)"/>
</clipPath>
</defs>
</svg>
<!--end::Svg Icon-->
</span>
</div>
<div class="wizard-label">
<h3 class="wizard-title">Event Information</h3>
<div class="wizard-desc">Add event details</div>
</div>
</div>
</div>
<!--end::Wizard Step 1 Nav-->
<!--begin::Wizard Step 2 Nav-->
<div class="wizard-step" data-wizard-type="step">
<div class="wizard-wrapper">
<div class="wizard-icon">
<span class="svg-icon svg-icon-2x">
<!--begin::Svg Icon | path:assets/media/svg/icons/Map/Compass.svg-->
<svg width="26" height="18" viewBox="0 0 26 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M13.2708 4.5H6.22915C5.18373 4.5 4.33331 3.91125 4.33331 3.1875V2.0625C4.33331 1.752 4.69731 1.5 5.14581 1.5H6.88348C7.23881 0.63525 8.38823 0 9.74998 0C11.1117 0 12.2611 0.63525 12.6165 1.5H14.3541C14.8026 1.5 15.1666 1.752 15.1666 2.0625V3.1875C15.1666 3.91125 14.3162 4.5 13.2708 4.5Z" fill="#C4C4C4"/>
<path d="M23.8334 15.75C23.6286 15.75 23.4412 15.6698 23.3491 15.543L21.9527 13.6095C21.7653 13.35 21.6667 13.0605 21.6667 12.771V6C21.6667 5.17275 22.6384 4.5 23.8334 4.5C25.0283 4.5 26 5.17275 26 6V12.771C26 13.0605 25.9014 13.35 25.714 13.6095L24.3176 15.543C24.2255 15.6698 24.0381 15.75 23.8334 15.75ZM25.2298 13.4415H25.2406H25.2298Z" fill="#C4C4C4"/>
<path d="M16.5208 2.25H16.25V3.1875C16.25 4.32525 14.9143 5.25 13.2708 5.25H6.22917C4.58575 5.25 3.25 4.32525 3.25 3.1875V2.25H2.97917C1.33575 2.25 0 3.17475 0 4.3125V15.9375C0 17.0752 1.33575 18 2.97917 18H16.5208C18.1643 18 19.5 17.0752 19.5 15.9375V4.3125C19.5 3.17475 18.1643 2.25 16.5208 2.25ZM15.4375 15.75H4.0625C3.614 15.75 3.25 15.498 3.25 15.1875C3.25 14.877 3.614 14.625 4.0625 14.625H15.4375C15.886 14.625 16.25 14.877 16.25 15.1875C16.25 15.498 15.886 15.75 15.4375 15.75ZM15.4375 13.5H4.0625C3.614 13.5 3.25 13.248 3.25 12.9375C3.25 12.627 3.614 12.375 4.0625 12.375H15.4375C15.886 12.375 16.25 12.627 16.25 12.9375C16.25 13.248 15.886 13.5 15.4375 13.5ZM15.4375 11.25H4.0625C3.614 11.25 3.25 10.998 3.25 10.6875C3.25 10.377 3.614 10.125 4.0625 10.125H15.4375C15.886 10.125 16.25 10.377 16.25 10.6875C16.25 10.998 15.886 11.25 15.4375 11.25ZM15.4375 9H4.0625C3.614 9 3.25 8.748 3.25 8.4375C3.25 8.127 3.614 7.875 4.0625 7.875H15.4375C15.886 7.875 16.25 8.127 16.25 8.4375C16.25 8.748 15.886 9 15.4375 9Z" fill="#C4C4C4"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="26" height="18" fill="white"/>
</clipPath>
</defs>
</svg>
<!--end::Svg Icon-->
</span>
</div>
<div class="wizard-label">
<h3 class="wizard-title">Attendee Registration</h3>
<div class="wizard-desc">Add attendee types </div>
</div>
</div>
</div>
<!--end::Wizard Step 2 Nav-->
<!--begin::Wizard Step 3 Nav-->
<div class="wizard-step" data-wizard-type="step">
<div class="wizard-wrapper">
<div class="wizard-icon">
<span class="svg-icon svg-icon-2x">
<!--begin::Svg Icon | path:assets/media/svg/icons/General/Thunder-move.svg-->
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.9625 3.25001H21.9375V2.43751H19.9063C19.7985 2.43751 19.6952 2.48031 19.619 2.5565C19.5428 2.63269 19.5 2.73602 19.5 2.84376V4.87501H20.3125V3.77001C22.6109 5.59442 24.1457 8.2109 24.6165 11.1073C25.0873 14.0038 24.4602 16.9717 22.858 19.4301C21.2558 21.8885 18.7938 23.6606 15.9539 24.3993C13.114 25.1381 10.1006 24.7904 7.50346 23.4244L7.12158 24.1394C9.88309 25.5911 13.0851 25.9661 16.1074 25.1918C19.1296 24.4174 21.7568 22.5489 23.48 19.9481C25.2032 17.3474 25.8998 14.1996 25.4346 11.1146C24.9695 8.02963 23.3759 5.22711 20.9625 3.25001Z" fill="#515255" fill-opacity="0.75"/>
<path d="M5.68752 22.2341C3.38364 20.4115 1.84377 17.794 1.36991 14.8948C0.896048 11.9957 1.52239 9.02406 3.1261 6.56281C4.7298 4.10156 7.19516 2.32823 10.0387 1.59061C12.8822 0.85299 15.8987 1.2043 18.4966 2.57564L18.8785 1.86064C16.1169 0.408933 12.9149 0.0339189 9.89268 0.808253C6.87046 1.58259 4.24324 3.45114 2.52003 6.05189C0.796814 8.65265 0.100285 11.8004 0.565391 14.8854C1.0305 17.9704 2.62413 20.7729 5.03752 22.75H4.06252V23.5625H6.09377C6.20151 23.5625 6.30485 23.5197 6.38103 23.4435C6.45722 23.3673 6.50002 23.264 6.50002 23.1563V21.125H5.68752V22.2341Z" fill="#515255" fill-opacity="0.75"/>
<path d="M3.65631 13C3.65631 14.848 4.20431 16.6545 5.23102 18.1911C6.25772 19.7277 7.71702 20.9253 9.42436 21.6325C11.1317 22.3397 13.0104 22.5247 14.8229 22.1642C16.6354 21.8037 18.3003 20.9138 19.6071 19.607C20.9138 18.3003 21.8037 16.6354 22.1643 14.8229C22.5248 13.0104 22.3398 11.1317 21.6326 9.42431C20.9254 7.71696 19.7277 6.25767 18.1912 5.23097C16.6546 4.20426 14.8481 3.65626 13.0001 3.65626C10.5219 3.65626 8.14533 4.64069 6.39303 6.39298C4.64074 8.14527 3.65631 10.5219 3.65631 13ZM21.5313 13C21.5313 14.6873 21.031 16.3368 20.0935 17.7397C19.1561 19.1427 17.8237 20.2361 16.2648 20.8818C14.7059 21.5276 12.9906 21.6965 11.3357 21.3673C9.6808 21.0381 8.16067 20.2256 6.96756 19.0325C5.77444 17.8394 4.96192 16.3193 4.63274 14.6644C4.30356 13.0095 4.4725 11.2941 5.11821 9.73524C5.76392 8.17636 6.8574 6.84396 8.26035 5.90653C9.66331 4.96911 11.3127 4.46876 13.0001 4.46876C15.2627 4.46876 17.4326 5.36759 19.0326 6.9675C20.6325 8.56742 21.5313 10.7374 21.5313 13Z" fill="#C4C4C4"/>
<path d="M5.28125 13C5.28125 14.5266 5.73395 16.019 6.58209 17.2883C7.43024 18.5577 8.63574 19.547 10.0462 20.1312C11.4566 20.7154 13.0086 20.8683 14.5059 20.5705C16.0031 20.2726 17.3785 19.5375 18.458 18.458C19.5375 17.3785 20.2726 16.0032 20.5704 14.5059C20.8683 13.0086 20.7154 11.4566 20.1312 10.0462C19.547 8.63576 18.5576 7.43025 17.2883 6.58211C16.019 5.73396 14.5266 5.28126 13 5.28126C10.9529 5.28126 8.98957 6.09449 7.54202 7.54203C6.09447 8.98958 5.28125 10.9529 5.28125 13ZM17.3509 9.22595L18.1634 8.41345C19.1999 9.57 19.8142 11.0435 19.9062 12.5938H18.6875V13.4063H19.9062C19.8158 14.9522 19.206 16.4224 18.1756 17.5785L17.3631 16.766L16.7862 17.3428L17.5987 18.1553C16.4401 19.1973 14.9618 19.8147 13.4062 19.9063V18.6875H12.5937V19.9063C11.0478 19.8159 9.57763 19.206 8.42156 18.1757L9.23406 17.3631L8.65719 16.7863L7.84469 17.5988C6.81008 16.4373 6.19997 14.9593 6.11406 13.4063H7.3125V12.5938H6.11406C6.20448 11.0478 6.8143 9.57765 7.84469 8.42158L8.65719 9.23408L9.23406 8.6572L8.42156 7.8447C9.57763 6.81431 11.0478 6.2045 12.5937 6.11407V7.31251H13.4062V6.11407C14.9522 6.2045 16.4224 6.81431 17.5784 7.8447L16.7659 8.6572L17.3509 9.22595Z" fill="#C4C4C4"/>
<path d="M13.4063 8.12501H12.5938V13C12.5934 13.0535 12.6037 13.1065 12.6239 13.156C12.6441 13.2055 12.6739 13.2505 12.7116 13.2884L15.1491 15.7259L15.726 15.1491L13.4063 12.8334V8.12501Z" fill="#C4C4C4"/>
</svg>
<!--end::Svg Icon-->
</span>
</div>
<div class="wizard-label">
<h3 class="wizard-title">Attendee Forms</h3>
<div class="wizard-desc">Customize attendee forms</div>
</div>
</div>
</div>
<!--end::Wizard Step 3 Nav-->
<!--begin::Wizard Step 5 Nav-->
<div class="wizard-step" data-wizard-type="step">
<div class="wizard-wrapper">
<div class="wizard-icon">
<span class="svg-icon svg-icon-2x">
<!--begin::Svg Icon | path:assets/media/svg/icons/Shopping/Credit-card.svg-->
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M25.1875 10.5625H23.7323L25.4747 8.81847C25.6303 8.66288 25.634 8.41181 25.4828 8.25216L18.1732 0.533406C18.0972 0.453375 17.9924 0.407469 17.8827 0.40625C17.7743 0.409094 17.667 0.4485 17.5894 0.5265L7.64156 10.5625H0.8125C0.587844 10.5625 0.40625 10.7445 0.40625 10.9688C0.40625 11.5115 0.707281 12.0063 1.21184 12.2923C1.46656 12.4365 1.625 12.7079 1.625 13C1.625 13.3648 1.37962 13.687 1.02903 13.7837C0.6565 13.886 0.40625 14.2025 0.40625 14.5722V14.6782C0.40625 15.0475 0.6565 15.3644 1.02863 15.4663C1.37963 15.563 1.625 15.8852 1.625 16.25C1.625 16.6148 1.37962 16.937 1.02903 17.0337C0.6565 17.136 0.40625 17.4525 0.40625 17.8222V17.9282C0.40625 18.2975 0.6565 18.6144 1.02863 18.7163C1.37963 18.813 1.625 19.1352 1.625 19.5C1.625 19.7921 1.46656 20.0635 1.21144 20.2077C0.707281 20.4937 0.40625 20.9885 0.40625 21.5312C0.40625 21.7555 0.587844 21.9375 0.8125 21.9375H5.48438C5.34381 22.2548 5.39337 22.6119 5.63387 22.8524L5.70862 22.9267C5.96984 23.1875 6.37041 23.2351 6.70637 23.0441C7.02325 22.8642 7.42422 22.9186 7.68178 23.1766C7.88856 23.3833 7.96819 23.6868 7.89019 23.9692C7.73581 24.5278 7.87272 25.0904 8.25622 25.4747C8.33259 25.5511 8.43578 25.5938 8.54344 25.5938C8.65109 25.5938 8.75469 25.5511 8.83066 25.4747L12.3679 21.9375H25.1875C25.4122 21.9375 25.5938 21.7555 25.5938 21.5312V10.9688C25.5938 10.7445 25.4122 10.5625 25.1875 10.5625ZM17.8709 1.39628L24.6208 8.52353L22.5847 10.5625H16.8244L21.006 6.38097L20.4315 5.80653L15.6756 10.5625H14.1993C14.1814 10.4926 14.1517 10.426 14.0997 10.374L13.5253 9.79956L12.9508 10.374L13.1393 10.5625H11.9901L11.5139 10.0868L12.0888 9.51194L12.376 9.79916L12.9504 9.22472L12.376 8.65028C12.2172 8.49144 11.9604 8.49144 11.8016 8.65028L10.6523 9.79956C10.5759 9.87594 10.5332 9.97913 10.5332 10.0868C10.5332 10.1944 10.5759 10.298 10.6523 10.374L10.8412 10.5625H8.78556L17.8709 1.39628ZM1.612 20.9146C2.12144 20.6265 2.4375 20.0846 2.4375 19.5C2.4375 18.7708 1.94675 18.1265 1.21875 17.9278L1.24434 17.8169C1.94675 17.6235 2.4375 16.9792 2.4375 16.25C2.4375 15.5208 1.94675 14.8765 1.21875 14.6778L1.24434 14.5669C1.94675 14.3735 2.4375 13.7292 2.4375 13C2.4375 12.4154 2.12144 11.8735 1.61241 11.5854C1.51206 11.5286 1.42838 11.4571 1.36459 11.375H7.57372C7.50953 11.4567 7.42584 11.5286 7.32591 11.5854C6.81606 11.8735 6.5 12.4154 6.5 13C6.5 13.7292 6.99075 14.3735 7.71875 14.5722L7.69316 14.6831C6.99075 14.8765 6.5 15.5208 6.5 16.25C6.5 16.9792 6.99075 17.6235 7.71875 17.8222L7.69316 17.9331C6.99075 18.1265 6.5 18.7708 6.5 19.5C6.5 20.0846 6.81606 20.6265 7.32509 20.9146C7.42544 20.9714 7.50913 21.0429 7.57291 21.125H1.36378C1.42838 21.0433 1.51206 20.9714 1.612 20.9146ZM8.64663 24.5103C8.63403 24.4071 8.64256 24.2974 8.67303 24.1865C8.82944 23.6226 8.66938 23.0161 8.25622 22.6025C7.73987 22.0862 6.93753 21.9781 6.28266 22.3523L6.22253 22.256C6.27941 22.1557 6.32369 22.048 6.35822 21.9379H8.125H11.219L8.64663 24.5103ZM24.7812 21.125H8.47234C8.36225 20.748 8.10022 20.4202 7.72525 20.2077C7.47094 20.0635 7.3125 19.7921 7.3125 19.5C7.3125 19.1352 7.55787 18.813 7.90847 18.7163C8.281 18.614 8.53125 18.2975 8.53125 17.9278V17.8222C8.53125 17.4529 8.281 17.136 7.90887 17.0341C7.55788 16.937 7.3125 16.6148 7.3125 16.25C7.3125 15.8852 7.55787 15.563 7.90847 15.4663C8.281 15.364 8.53125 15.0475 8.53125 14.6778V14.5722C8.53125 14.2029 8.281 13.886 7.90887 13.7841C7.55788 13.687 7.3125 13.3648 7.3125 13C7.3125 12.7079 7.47094 12.4365 7.72606 12.2923C8.10063 12.0798 8.36266 11.752 8.47275 11.375H24.7812V21.125Z" fill="#515255" fill-opacity="0.75"/>
<path d="M3.25 12.5938H5.6875V13.4062H3.25V12.5938Z" fill="#515255" fill-opacity="0.75"/>
<path d="M3.25 14.2188H5.6875V15.0312H3.25V14.2188Z" fill="#515255" fill-opacity="0.75"/>
<path d="M3.25 15.8438H5.6875V16.6562H3.25V15.8438Z" fill="#515255" fill-opacity="0.75"/>
<path d="M3.25 17.4688H5.6875V18.2812H3.25V17.4688Z" fill="#515255" fill-opacity="0.75"/>
<path d="M3.25 19.0938H5.6875V19.9062H3.25V19.0938Z" fill="#515255" fill-opacity="0.75"/>
<path d="M10.1562 15.4375H10.9688V13H11.7812V12.1875H9.34375V13H10.1562V15.4375Z" fill="#515255" fill-opacity="0.75"/>
<path d="M22.3438 15.4375H23.1562V13H23.9688V12.1875H21.5312V13H22.3438V15.4375Z" fill="#515255" fill-opacity="0.75"/>
<path d="M12.1875 12.1875H13V15.4375H12.1875V12.1875Z" fill="#515255" fill-opacity="0.75"/>
<path d="M13.8125 15.4375H15.4375C15.6622 15.4375 15.8438 15.2555 15.8438 15.0312V14.2188H15.0312V14.625H14.2188V13H15.0312V13.4062H15.8438V12.5938C15.8438 12.3695 15.6622 12.1875 15.4375 12.1875H13.8125C13.5878 12.1875 13.4062 12.3695 13.4062 12.5938V15.0312C13.4062 15.2555 13.5878 15.4375 13.8125 15.4375Z" fill="#515255" fill-opacity="0.75"/>
<path d="M17.0625 14.0636L17.3887 13.9007L17.875 14.3869V15.4375H18.6875V14.2188C18.6875 14.1111 18.6448 14.0075 18.5685 13.9315L18.1545 13.5176L18.4628 13.3632C18.6006 13.2945 18.6875 13.154 18.6875 13V12.1875H17.875V12.7489L17.0625 13.1552V12.1875H16.25V15.4375H17.0625V14.0636Z" fill="#515255" fill-opacity="0.75"/>
<path d="M19.5 15.4375H21.125V14.625H19.9062V14.2188H21.125V13.4062H19.9062V13H21.125V12.1875H19.5C19.2753 12.1875 19.0938 12.3695 19.0938 12.5938V15.0312C19.0938 15.2555 19.2753 15.4375 19.5 15.4375Z" fill="#515255" fill-opacity="0.75"/>
<path d="M17.2595 4.34118L18.9833 6.0649L19.5577 5.49046L17.834 3.76675L18.4084 3.19231L17.834 2.61787L16.1107 4.34159L16.6851 4.91603L17.2595 4.34118Z" fill="#515255" fill-opacity="0.75"/>
<path d="M15.2486 9.79956L14.2772 8.82781L14.3926 8.48209H15.0808L15.8238 9.22472L16.3982 8.65028L15.5362 7.78862C15.4598 7.71225 15.3566 7.66959 15.249 7.66959H14.6636L14.7724 7.34256C14.8212 7.19671 14.783 7.03543 14.6745 6.92696L14.1001 6.35252L13.5256 6.92696L13.9226 7.32387L13.6353 8.18553L12.9512 7.5014L12.3768 8.07584L14.6745 10.374L15.2486 9.79956Z" fill="#515255" fill-opacity="0.75"/>
<path d="M16.3979 8.07544C16.4771 8.15466 16.5811 8.19447 16.6851 8.19447C16.7891 8.19447 16.8931 8.15466 16.9723 8.07544L18.1212 6.92656L17.5467 6.35213L16.6851 7.21378L16.3979 6.92656L17.2595 6.0645L16.6851 5.49006L15.8234 6.35213L15.5358 6.0645L16.3979 5.20284L15.8234 4.62841L14.6741 5.77728C14.5978 5.85366 14.5551 5.95684 14.5551 6.0645C14.5551 6.17216 14.5978 6.27575 14.6741 6.35172L16.3979 8.07544Z" fill="#515255" fill-opacity="0.75"/>
<path d="M9.34375 16.25H23.9688V17.0625H9.34375V16.25Z" fill="#515255" fill-opacity="0.75"/>
<path d="M18.2812 17.875H23.9688V18.6875H18.2812V17.875Z" fill="#515255" fill-opacity="0.75"/>
<path d="M19.2096 9.46392L21.6466 7.02687L22.2211 7.60131L19.784 10.0384L19.2096 9.46392Z" fill="#515255" fill-opacity="0.75"/>
<path d="M9.75 20.3125H16.25C16.4747 20.3125 16.6562 20.1305 16.6562 19.9062V18.2812C16.6562 18.057 16.4747 17.875 16.25 17.875H9.75C9.52534 17.875 9.34375 18.057 9.34375 18.2812V19.9062C9.34375 20.1305 9.52534 20.3125 9.75 20.3125ZM10.1562 18.6875H15.8438V19.5H10.1562V18.6875Z" fill="#515255" fill-opacity="0.75"/>
</svg>
<!--end::Svg Icon-->
</span>
</div>
<div class="wizard-label">
<h3 class="wizard-title">Sessions</h3>
<div class="wizard-desc">Create and edit sessions</div>
</div>
</div>
</div>
<!--end::Wizard Step 5 Nav-->
<!--begin::Wizard Step 6 Nav-->
<div class="wizard-step" data-wizard-type="step">
<div class="wizard-wrapper">
<div class="wizard-icon">
<span class="svg-icon svg-icon-2x">
<!--begin::Svg Icon | path:assets/media/svg/icons/General/Like.svg-->
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.66664 18.6333H7.79997C7.56066 18.6333 7.36664 18.8274 7.36664 19.0667C7.36664 19.306 7.56066 19.5 7.79997 19.5H8.66664C8.90595 19.5 9.09997 19.306 9.09997 19.0667C9.09997 18.8274 8.90595 18.6333 8.66664 18.6333Z" fill="#515255" fill-opacity="0.75"/>
<path d="M20.8 18.6333H10.4C10.1607 18.6333 9.96667 18.8274 9.96667 19.0667C9.96667 19.306 10.1607 19.5 10.4 19.5H20.8C21.0393 19.5 21.2333 19.306 21.2333 19.0667C21.2333 18.8274 21.0393 18.6333 20.8 18.6333Z" fill="#515255" fill-opacity="0.75"/>
<path d="M8.66664 16.0333H7.79997C7.56066 16.0333 7.36664 16.2274 7.36664 16.4667C7.36664 16.706 7.56066 16.9 7.79997 16.9H8.66664C8.90595 16.9 9.09997 16.706 9.09997 16.4667C9.09997 16.2274 8.90595 16.0333 8.66664 16.0333Z" fill="#515255" fill-opacity="0.75"/>
<path d="M20.8 16.0333H10.4C10.1607 16.0333 9.96667 16.2274 9.96667 16.4667C9.96667 16.706 10.1607 16.9 10.4 16.9H20.8C21.0393 16.9 21.2333 16.706 21.2333 16.4667C21.2333 16.2274 21.0393 16.0333 20.8 16.0333Z" fill="#515255" fill-opacity="0.75"/>
<path d="M8.66664 13.4333H7.79997C7.56066 13.4333 7.36664 13.6274 7.36664 13.8667C7.36664 14.106 7.56066 14.3 7.79997 14.3H8.66664C8.90595 14.3 9.09997 14.106 9.09997 13.8667C9.09997 13.6274 8.90595 13.4333 8.66664 13.4333Z" fill="#515255" fill-opacity="0.75"/>
<path d="M20.8 13.4333H10.4C10.1607 13.4333 9.96667 13.6274 9.96667 13.8667C9.96667 14.106 10.1607 14.3 10.4 14.3H20.8C21.0393 14.3 21.2333 14.106 21.2333 13.8667C21.2333 13.6274 21.0393 13.4333 20.8 13.4333Z" fill="#515255" fill-opacity="0.75"/>
<path d="M8.66664 10.8333H7.79997C7.56066 10.8333 7.36664 11.0274 7.36664 11.2667C7.36664 11.506 7.56066 11.7 7.79997 11.7H8.66664C8.90595 11.7 9.09997 11.506 9.09997 11.2667C9.09997 11.0274 8.90595 10.8333 8.66664 10.8333Z" fill="#515255" fill-opacity="0.75"/>
<path d="M20.8 10.8333H10.4C10.1607 10.8333 9.96667 11.0274 9.96667 11.2667C9.96667 11.506 10.1607 11.7 10.4 11.7H20.8C21.0393 11.7 21.2333 11.506 21.2333 11.2667C21.2333 11.0274 21.0393 10.8333 20.8 10.8333Z" fill="#515255" fill-opacity="0.75"/>
<path d="M8.66664 8.23334H7.79997C7.56066 8.23334 7.36664 8.42736 7.36664 8.66667C7.36664 8.90598 7.56066 9.1 7.79997 9.1H8.66664C8.90595 9.1 9.09997 8.90598 9.09997 8.66667C9.09997 8.42736 8.90595 8.23334 8.66664 8.23334Z" fill="#515255" fill-opacity="0.75"/>
<path d="M20.8 8.23334H10.4C10.1607 8.23334 9.96667 8.42736 9.96667 8.66667C9.96667 8.90598 10.1607 9.1 10.4 9.1H20.8C21.0393 9.1 21.2333 8.90598 21.2333 8.66667C21.2333 8.42736 21.0393 8.23334 20.8 8.23334Z" fill="#515255" fill-opacity="0.75"/>
<path d="M23.8277 6.4727C23.8256 6.43473 23.8181 6.39725 23.8056 6.36133C23.8009 6.34747 23.7974 6.33403 23.7913 6.3206C23.7703 6.27348 23.7409 6.23047 23.7047 6.19363L17.638 0.126967C17.6012 0.0907292 17.5581 0.0613708 17.511 0.0403C17.4976 0.0342333 17.4842 0.0307667 17.4707 0.026C17.4345 0.0135417 17.3967 0.00595833 17.3585 0.00346667C17.3511 0.00476667 17.3429 0 17.3334 0H5.20002C4.96071 0 4.76669 0.194025 4.76669 0.433333V1.73333H2.60002C2.36071 1.73333 2.16669 1.92736 2.16669 2.16667V25.5667C2.16669 25.806 2.36071 26 2.60002 26H20.8C21.0393 26 21.2334 25.806 21.2334 25.5667V23.4H23.4C23.6393 23.4 23.8334 23.206 23.8334 22.9667V6.5C23.8334 6.49047 23.8286 6.48223 23.8277 6.4727ZM17.7667 1.4794L22.354 6.06667H17.7667V1.4794ZM20.3667 25.1333H3.03335V2.6H4.76669V22.9667C4.76669 23.206 4.96071 23.4 5.20002 23.4H20.3667V25.1333ZM22.9667 22.5333H5.63335V0.866667H16.9V6.5C16.9 6.73931 17.094 6.93333 17.3334 6.93333H22.9667V22.5333Z" fill="#515255" fill-opacity="0.75"/>
<path d="M10.4 3.89999H7.79997C7.56066 3.89999 7.36664 4.09402 7.36664 4.33333V6.93333C7.36664 7.17264 7.56066 7.36666 7.79997 7.36666H10.4C10.6393 7.36666 10.8333 7.17264 10.8333 6.93333V4.33333C10.8333 4.09402 10.6393 3.89999 10.4 3.89999ZM9.96664 6.49999H8.2333V4.76666H9.96664V6.49999Z" fill="#515255" fill-opacity="0.75"/>
</svg>
<!--end::Svg Icon-->
</span>
</div>
<div class="wizard-label">
<h3 class="wizard-title">Tickets</h3>
<div class="wizard-desc">Add tickets, sponsors, coupons </div>
</div>
</div>
</div>
<!--end::Wizard Step 6 Nav-->
</div>
</div>
<!--end: Wizard Nav-->
<!--begin: Wizard Body-->
<div class="wizard-body py-8 px-8 py-lg-20 px-lg-10">
<!--begin: Wizard Form-->
<div class="row">
<div class="col-12">
<form class="form" id="kt_form">
<!--begin: Wizard Step 1-->
<div class="pb-5" data-wizard-type="step-content" data-wizard-state="current">
<h4 class="mb-10 font-weight-bold text-dark">Enter Event Details</h4>
<!--begin::Input-->
<div class="form-group">
<label>Event Name</label>
<input type="text" class="form-control form-control-solid form-control-lg" />
</div>
<!--end::Input-->
<!--begin::Input-->
<div class="form-group">
<label>Event Description</label>
<textarea type="text" class="form-control form-control-solid form-control-lg" rows="3" ></textarea>
</div>
<!--end::Input-->
<div class="row">
<div class="col-12 col-lg-6">
<!--begin::Select-->
<div class="form-group">
<label>Event Type</label>
<select name="country" class="form-control form-control-solid form-control-lg">
<option>Select Event Type</option>
<option>A</option>
<option>B</option>
</select>
</div>
<!--end::Select-->
</div>
<div class="col-12 col-lg-6">
<!--begin::Select-->
<div class="form-group">
<label>Event Privacy</label>
<select name="country" class="form-control form-control-solid form-control-lg">
<option>Select Event Privacy</option>
<option>A</option>
<option>B</option>
</select>
</div>
<!--end::Select-->
</div>
<div class="col-12 col-lg-6">
<!--begin::Start TIme-->
<div class="form-group">
<label>Start Time</label>
<input class="form-control form-control-solid form-control-lg" type="datetime-local" value="2011-08-19T13:45:00" id="example-datetime-local-input">
</div>
<!--end::Start Time-->
</div>
<div class="col-12 col-lg-6">
<!--begin::End Time-->
<div class="form-group">
<label>Start Time</label>
<input class="form-control form-control-solid form-control-lg" type="datetime-local" value="2011-08-19T13:45:00" id="example-datetime-local-input">
</div>
<!--end::End time-->
</div>
</div>
</div>
<!--end: Wizard Step 1-->
<!--begin: Wizard Step 2-->
<div class="pb-5" data-wizard-type="step-content" id="attendee-type">
<h4 class="mb-10 font-weight-bold text-dark">Enter Attendee Type details:</h4>
<!--begin::Input-->
<div class="row">
<div class="col-12 col-lg-6">
<div class="form-group">
<label>Title</label>
<input type="text" class="form-control form-control-solid form-control-lg" />
</div>
</div>
<div class="col-12 col-lg-6">
<!--begin::Input-->
<div class="form-group">
<label>Capacity</label>
<input type="text" class="form-control form-control-solid form-control-lg" />
</div>
<!--end::Input-->
</div>
</div>
<div class="row">
<div class="col-12 col-lg-6">
<div class="form-group">
<label>Image:</label>
<input type="file" class="form-control form-control-solid form-control-lg" />
</div>
</div>
<div class="col-12 col-lg-6">
<!--begin::Input-->
<div class="form-group">
<label>Email Template: </label>
<select class="form-control form-control-solid form-control-lg">
<option value="">Select Email Template</option>
<option value="">Select Email Template</option>
<option value="">Select Email Template</option>
</select>
<div class="text-right mt-2">
<a href="#">Refresh Templates</a>
<a href="#">+ Add New Template</a>
</div>
</div>
<!--end::Input-->
</div>
</div>
<!--end::Input-->
<div class="row">
<div class="col-12 col-lg-6">
<!--begin::Start TIme-->
<div class="form-group">
<label>Registration Start Time:</label>
<input class="form-control form-control-solid form-control-lg" type="datetime-local" value="2011-08-19T13:45:00">
</div>
<!--end::Start Time-->
</div>
<div class="col-12 col-lg-6">
<!--begin::End Time-->
<div class="form-group">
<label>Registration End Time:</label>
<input class="form-control form-control-solid form-control-lg" type="datetime-local" value="2011-08-19T13:45:00" >
</div>
<!--end::End time-->
</div>
</div>
<!--begin::Textarea-->
<div class="form-group">
<label>Description</label>
<textarea type="text" class="form-control form-control-solid form-control-lg" rows="3" ></textarea>
</div>
<!--end::Textarea-->
<!--begin::Textarea-->
<div class="form-group">
<label>Category:</label>
<select class="form-control form-control-solid form-control-lg">
<option value="">Select Category</option>
<option value="">Category</option>
<option value="">Category</option>
</select>
</div>
<!--end::Textarea-->
<div class="row">
<div class="col-12">
<div class=" border-top mt-10 pt-10">
<h4 class="mb-5 font-weight-bold text-dark">Attendee Types:</h4>
</div>
<div class="mb-5">
<a href="#" >+ Add Attendee Type</a>
</div>
<div class="custom-table-wrapper">
<table class="custom-table">
<tr>
<td align="center">
<span class="label label-success">2</span>
</td>
<td>
<b>Type :</b> <br>Business
</td>
<td>
<b>Email Template :</b><br> CCS Business Template
</td>
<td>
<b>Capacity :</b><br> 100
</td>
<td>
<b>0%</b>
</td>
<td align="center">
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm mx-3">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M12.2674799,18.2323597 L12.0084872,5.45852451 C12.0004303,5.06114792 12.1504154,4.6768183 12.4255037,4.38993949 L15.0030167,1.70195304 L17.5910752,4.40093695 C17.8599071,4.6812911 18.0095067,5.05499603 18.0083938,5.44341307 L17.9718262,18.2062508 C17.9694575,19.0329966 17.2985816,19.701953 16.4718324,19.701953 L13.7671717,19.701953 C12.9505952,19.701953 12.2840328,19.0487684 12.2674799,18.2323597 Z" fill="#000000" fill-rule="nonzero" transform="translate(14.701953, 10.701953) rotate(-135.000000) translate(-14.701953, -10.701953) "></path>
<path d="M12.9,2 C13.4522847,2 13.9,2.44771525 13.9,3 C13.9,3.55228475 13.4522847,4 12.9,4 L6,4 C4.8954305,4 4,4.8954305 4,6 L4,18 C4,19.1045695 4.8954305,20 6,20 L18,20 C19.1045695,20 20,19.1045695 20,18 L20,13 C20,12.4477153 20.4477153,12 21,12 C21.5522847,12 22,12.4477153 22,13 L22,18 C22,20.209139 20.209139,22 18,22 L6,22 C3.790861,22 2,20.209139 2,18 L2,6 C2,3.790861 3.790861,2 6,2 L12.9,2 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M6,8 L6,20.5 C6,21.3284271 6.67157288,22 7.5,22 L16.5,22 C17.3284271,22 18,21.3284271 18,20.5 L18,8 L6,8 Z" fill="#000000" fill-rule="nonzero"></path>
<path d="M14,4.5 L14,4 C14,3.44771525 13.5522847,3 13,3 L11,3 C10.4477153,3 10,3.44771525 10,4 L10,4.5 L5.5,4.5 C5.22385763,4.5 5,4.72385763 5,5 L5,5.5 C5,5.77614237 5.22385763,6 5.5,6 L18.5,6 C18.7761424,6 19,5.77614237 19,5.5 L19,5 C19,4.72385763 18.7761424,4.5 18.5,4.5 L14,4.5 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
</td>
</tr>
<tr>
<td align="center">
<span class="label label-success">1</span>
</td>
<td>
<b>Type :</b> <br>Business
</td>
<td>
<b>Email Template :</b><br> CCS Business Template
</td>
<td>
<b>Capacity :</b><br> 100
</td>
<td>
<b>0%</b>
</td>
<td align="center">
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm mx-3">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M12.2674799,18.2323597 L12.0084872,5.45852451 C12.0004303,5.06114792 12.1504154,4.6768183 12.4255037,4.38993949 L15.0030167,1.70195304 L17.5910752,4.40093695 C17.8599071,4.6812911 18.0095067,5.05499603 18.0083938,5.44341307 L17.9718262,18.2062508 C17.9694575,19.0329966 17.2985816,19.701953 16.4718324,19.701953 L13.7671717,19.701953 C12.9505952,19.701953 12.2840328,19.0487684 12.2674799,18.2323597 Z" fill="#000000" fill-rule="nonzero" transform="translate(14.701953, 10.701953) rotate(-135.000000) translate(-14.701953, -10.701953) "></path>
<path d="M12.9,2 C13.4522847,2 13.9,2.44771525 13.9,3 C13.9,3.55228475 13.4522847,4 12.9,4 L6,4 C4.8954305,4 4,4.8954305 4,6 L4,18 C4,19.1045695 4.8954305,20 6,20 L18,20 C19.1045695,20 20,19.1045695 20,18 L20,13 C20,12.4477153 20.4477153,12 21,12 C21.5522847,12 22,12.4477153 22,13 L22,18 C22,20.209139 20.209139,22 18,22 L6,22 C3.790861,22 2,20.209139 2,18 L2,6 C2,3.790861 3.790861,2 6,2 L12.9,2 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M6,8 L6,20.5 C6,21.3284271 6.67157288,22 7.5,22 L16.5,22 C17.3284271,22 18,21.3284271 18,20.5 L18,8 L6,8 Z" fill="#000000" fill-rule="nonzero"></path>
<path d="M14,4.5 L14,4 C14,3.44771525 13.5522847,3 13,3 L11,3 C10.4477153,3 10,3.44771525 10,4 L10,4.5 L5.5,4.5 C5.22385763,4.5 5,4.72385763 5,5 L5,5.5 C5,5.77614237 5.22385763,6 5.5,6 L18.5,6 C18.7761424,6 19,5.77614237 19,5.5 L19,5 C19,4.72385763 18.7761424,4.5 18.5,4.5 L14,4.5 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<!--End: Wizard Step 2-->
<!--begin: Wizard Step 3-->
<div class="pb-5" data-wizard-type="step-content">
<h4 class="mb-10 font-weight-bold text-dark">Add New Registration Forms
</h4>
<div class="row">
<div class="col-12 col-lg-6">
<div class="form-group">
<label>Registration type</label>
<select class="form-control form-control-solid form-control-lg">
<option value="">Select Type</option>
<option value="">Type Here</option>
<option value="">Type Here</option>
</select>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="form-group">
<label>Success Url</label>
<input type="text" class="form-control form-control-solid form-control-lg">
</div>
</div>
</div>
<div class="form-group">
<label>Description</label>
<textarea type="text" class="form-control form-control-solid form-control-lg" rows="3"></textarea>
</div>
<div class="row">
<div class="col-12">
<div class=" border-top mt-10 pt-10">
<h4 class="mb-5 font-weight-bold text-dark">Registration Forms</h4>
</div>
<div class="mb-5">
<a href="#" >+ Add Registration From</a>
</div>
<div class="custom-table-wrapper">
<table class="custom-table">
<tr>
<td align="center" width="40">
<span class="label label-success">1</span>
</td>
<td>
<b>Business :</b> <br>Business
</td>
<td align="right">
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm mx-3">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M12.2674799,18.2323597 L12.0084872,5.45852451 C12.0004303,5.06114792 12.1504154,4.6768183 12.4255037,4.38993949 L15.0030167,1.70195304 L17.5910752,4.40093695 C17.8599071,4.6812911 18.0095067,5.05499603 18.0083938,5.44341307 L17.9718262,18.2062508 C17.9694575,19.0329966 17.2985816,19.701953 16.4718324,19.701953 L13.7671717,19.701953 C12.9505952,19.701953 12.2840328,19.0487684 12.2674799,18.2323597 Z" fill="#000000" fill-rule="nonzero" transform="translate(14.701953, 10.701953) rotate(-135.000000) translate(-14.701953, -10.701953) "></path>
<path d="M12.9,2 C13.4522847,2 13.9,2.44771525 13.9,3 C13.9,3.55228475 13.4522847,4 12.9,4 L6,4 C4.8954305,4 4,4.8954305 4,6 L4,18 C4,19.1045695 4.8954305,20 6,20 L18,20 C19.1045695,20 20,19.1045695 20,18 L20,13 C20,12.4477153 20.4477153,12 21,12 C21.5522847,12 22,12.4477153 22,13 L22,18 C22,20.209139 20.209139,22 18,22 L6,22 C3.790861,22 2,20.209139 2,18 L2,6 C2,3.790861 3.790861,2 6,2 L12.9,2 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M6,8 L6,20.5 C6,21.3284271 6.67157288,22 7.5,22 L16.5,22 C17.3284271,22 18,21.3284271 18,20.5 L18,8 L6,8 Z" fill="#000000" fill-rule="nonzero"></path>
<path d="M14,4.5 L14,4 C14,3.44771525 13.5522847,3 13,3 L11,3 C10.4477153,3 10,3.44771525 10,4 L10,4.5 L5.5,4.5 C5.22385763,4.5 5,4.72385763 5,5 L5,5.5 C5,5.77614237 5.22385763,6 5.5,6 L18.5,6 C18.7761424,6 19,5.77614237 19,5.5 L19,5 C19,4.72385763 18.7761424,4.5 18.5,4.5 L14,4.5 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
</td>
</tr>
<tr>
<td align="center" width="50">
<span class="label label-success">1</span>
</td>
<td>
<b>Business :</b> <br>Business
</td>
<td align="right">
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm mx-3">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M12.2674799,18.2323597 L12.0084872,5.45852451 C12.0004303,5.06114792 12.1504154,4.6768183 12.4255037,4.38993949 L15.0030167,1.70195304 L17.5910752,4.40093695 C17.8599071,4.6812911 18.0095067,5.05499603 18.0083938,5.44341307 L17.9718262,18.2062508 C17.9694575,19.0329966 17.2985816,19.701953 16.4718324,19.701953 L13.7671717,19.701953 C12.9505952,19.701953 12.2840328,19.0487684 12.2674799,18.2323597 Z" fill="#000000" fill-rule="nonzero" transform="translate(14.701953, 10.701953) rotate(-135.000000) translate(-14.701953, -10.701953) "></path>
<path d="M12.9,2 C13.4522847,2 13.9,2.44771525 13.9,3 C13.9,3.55228475 13.4522847,4 12.9,4 L6,4 C4.8954305,4 4,4.8954305 4,6 L4,18 C4,19.1045695 4.8954305,20 6,20 L18,20 C19.1045695,20 20,19.1045695 20,18 L20,13 C20,12.4477153 20.4477153,12 21,12 C21.5522847,12 22,12.4477153 22,13 L22,18 C22,20.209139 20.209139,22 18,22 L6,22 C3.790861,22 2,20.209139 2,18 L2,6 C2,3.790861 3.790861,2 6,2 L12.9,2 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M6,8 L6,20.5 C6,21.3284271 6.67157288,22 7.5,22 L16.5,22 C17.3284271,22 18,21.3284271 18,20.5 L18,8 L6,8 Z" fill="#000000" fill-rule="nonzero"></path>
<path d="M14,4.5 L14,4 C14,3.44771525 13.5522847,3 13,3 L11,3 C10.4477153,3 10,3.44771525 10,4 L10,4.5 L5.5,4.5 C5.22385763,4.5 5,4.72385763 5,5 L5,5.5 C5,5.77614237 5.22385763,6 5.5,6 L18.5,6 C18.7761424,6 19,5.77614237 19,5.5 L19,5 C19,4.72385763 18.7761424,4.5 18.5,4.5 L14,4.5 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<!--end: Wizard Step 3-->
<!--begin: Wizard Step 4-->
<div class="pb-5" data-wizard-type="step-content">
<h4 class="mb-10 font-weight-bold text-dark">Add New Session</h4>
<div class="row">
<div class="col-12 col-lg-6">
<div class="form-group">
<label>Title :</label>
<input type="text" class="form-control form-control-solid form-control-lg">
</div>
</div>
<div class="col-12 col-lg-6">
<div class="form-group">
<label>Image :</label>
<input type="file" class="form-control form-control-solid form-control-lg">
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-6">
<!--begin::Start TIme-->
<div class="form-group">
<label>Start</label>
<input class="form-control form-control-solid form-control-lg" type="datetime-local" value="2011-08-19T13:45:00">
</div>
<!--end::Start Time-->
</div>
<div class="col-12 col-lg-6">
<!--begin::End Time-->
<div class="form-group">
<label>End</label>
<input class="form-control form-control-solid form-control-lg" type="datetime-local" value="2011-08-19T13:45:00">
</div>
<!--end::End time-->
</div>
</div>
<div class="row">
<div class="col-12">
<div class="form-group">
<label>Description</label>
<textarea type="text" class="form-control form-control-solid form-control-lg" rows="3"></textarea>
</div>
</div>
<div class="col-12">
<label>Registration type:</label>
<div class="card p-5 mb-5">
<div class="row">
<div class="col-12 col-lg-4">
<div class="form-group mb-0">
<label class="checkbox">
<input type="checkbox" />
<span></span>
<b>Your option here</b>
</label>
<label class="checkbox my-2">
<input type="checkbox" />
<span></span>
<b>Your option here</b>
</label>
<label class="checkbox">
<input type="checkbox" />
<span></span>
<b>Your option here</b>
</label>
</div>
</div>
<div class="col-12 col-lg-4">
<div class="form-group mb-0">
<label class="checkbox">
<input type="checkbox" />
<span></span>
<b>Your option here</b>
</label>
<label class="checkbox my-2">
<input type="checkbox" />
<span></span>
<b>Your option here</b>
</label>
<label class="checkbox">
<input type="checkbox" />
<span></span>
<b>Your option here</b>
</label>
</div>
</div>
<div class="col-12 col-lg-4">
<div class="form-group mb-0">
<label class="checkbox">
<input type="checkbox" />
<span></span>
<b>Your option here</b>
</label>
<label class="checkbox my-2">
<input type="checkbox" />
<span></span>
<b>Your option here</b>
</label>
<label class="checkbox">
<input type="checkbox" />
<span></span>
<b>Your option here</b>
</label>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="row">
<div class="col-12">
<div class="form-group m-0">
<label>
Activity Type:
<a href="#" class="d-block">Can't find the one What you want?</a>
</label>
</div>
</div>
<div class="col-12 col-form-label">
<div class="radio-list">
<div class="radio-wrapper mb-5">
<label class="radio mb-1">
<input type="radio" name="radios4"/>
<span></span>
<b>Presentation</b>
</label>
<span class="d-block pl-8 active-content">
Showcase format in which a certain attendee type will present to a panel of attendees for a specific Presenting attendees will rotate as per a pre-determined schedule. Venue: Presentation Room
</span>
</div>
<div class="radio-wrapper mb-5">
<label class="radio mb-1">
<input type="radio" name="radios4"/>
<span></span>
<b>Workshop</b>
</label>
<span class="d-block pl-8 active-content">
Workshops featuring industry speakers or panelists speaking to an attendee audience. Can be restricted by attendee type. Can be live or recorded webinar. Venue: Workshop Room
</span>
</div>
<div class="radio-wrapper mb-5">
<label class="radio mb-1">
<input type="radio" name="radios4"/>
<span></span>
<b>Keynote</b>
</label>
<span class="d-block pl-8 active-content">
Keynote or plenary session featuring a speaker or panelists speaking to an attendee audience. Can be restricted by attendee type. Can be live or recorded webinar. Venue: Auditorium </span>
</div>
<div class="radio-wrapper mb-5">
<label class="radio mb-1">
<input type="radio" name="radios4"/>
<span></span>
<b>Matchmaker</b>
</label>
<span class="d-block pl-8 active-content">
One-on-one, or one-to-many strategic or non-strategic matchmaker session with attendees meeting live as per a pre-determined schedule. Venue: Roundtable Room
</span>
</div>
<div class="radio-wrapper mb-5">
<label class="radio mb-1">
<input type="radio" name="radios4"/>
<span></span>
<b>Networking</b>
</label>
<span class="d-block pl-8 active-content">
Open networking session where attendees can chat and exchange contact information. Venue: Networking Room
</span>
</div>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row">
<div class="col-12">
<div class="form-group m-0">
<label>
Moderators:
<a href="#" class="d-block">Click here to Invite More</a> </a>
</label>
</div>
</div>
<div class="col-4 col-form-label">
<div class="checkbox-list">
<div class="checkbox-wrapper mb-5">
<label class="checkbox mb-1">
<input type="checkbox" name="radios4"/>
<span></span>
<b>Admin Local</b>
</label>
</div>
<div class="checkbox-wrapper mb-5">
<label class="checkbox mb-1">
<input type="checkbox" name="radios4"/>
<span></span>
<b>Ben Fatola</b>
</label>
</div>
<div class="checkbox-wrapper mb-5">
<label class="checkbox mb-1">
<input type="checkbox" name="radios4"/>
<span></span>
<b>Clifton E.</b>
</label>
</div>
</div>
</div>
<div class="col-4 col-form-label">
<div class="checkbox-list">
<div class="checkbox-wrapper mb-5">
<label class="checkbox mb-1">
<input type="checkbox" name="radios4"/>
<span></span>
<b>Admin Local</b>
</label>
</div>
<div class="checkbox-wrapper mb-5">
<label class="checkbox mb-1">
<input type="checkbox" name="radios4"/>
<span></span>
<b>Ben Fatola</b>
</label>
</div>
<div class="checkbox-wrapper mb-5">
<label class="checkbox mb-1">
<input type="checkbox" name="radios4"/>
<span></span>
<b>Clifton E.</b>
</label>
</div>
</div>
</div>
<div class="col-4 col-form-label">
<div class="checkbox-list">
<div class="checkbox-wrapper mb-5">
<label class="checkbox mb-1">
<input type="checkbox" name="radios4"/>
<span></span>
<b>Admin Local</b>
</label>
</div>
<div class="checkbox-wrapper mb-5">
<label class="checkbox mb-1">
<input type="checkbox" name="radios4"/>
<span></span>
<b>Ben Fatola</b>
</label>
</div>
<div class="checkbox-wrapper mb-5">
<label class="checkbox mb-1">
<input type="checkbox" name="radios4"/>
<span></span>
<b>Clifton E.</b>
</label>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class=" border-top mt-5 pt-10">
<h4 class="mb-5 font-weight-bold text-dark">Sessions</h4>
</div>
<div class="mb-5">
<a href="#">+ Add New Session</a>
</div>
<div class="custom-table-wrapper">
<table class="custom-table">
<tr>
<td align="center">
<img src="assets/media/svg/avatars/009-boy-4.svg" width="30" alt="">
</td>
<td>
<b>Type :</b> <br>Workshop Session
</td>
<td>
<b>Jun 20, 2020 09:15 AM to 11:00 PM</b>
</td>
<td>
<b> Workshop</b>
</td>
<td align="center">
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm mx-3">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M12.2674799,18.2323597 L12.0084872,5.45852451 C12.0004303,5.06114792 12.1504154,4.6768183 12.4255037,4.38993949 L15.0030167,1.70195304 L17.5910752,4.40093695 C17.8599071,4.6812911 18.0095067,5.05499603 18.0083938,5.44341307 L17.9718262,18.2062508 C17.9694575,19.0329966 17.2985816,19.701953 16.4718324,19.701953 L13.7671717,19.701953 C12.9505952,19.701953 12.2840328,19.0487684 12.2674799,18.2323597 Z" fill="#000000" fill-rule="nonzero" transform="translate(14.701953, 10.701953) rotate(-135.000000) translate(-14.701953, -10.701953) "></path>
<path d="M12.9,2 C13.4522847,2 13.9,2.44771525 13.9,3 C13.9,3.55228475 13.4522847,4 12.9,4 L6,4 C4.8954305,4 4,4.8954305 4,6 L4,18 C4,19.1045695 4.8954305,20 6,20 L18,20 C19.1045695,20 20,19.1045695 20,18 L20,13 C20,12.4477153 20.4477153,12 21,12 C21.5522847,12 22,12.4477153 22,13 L22,18 C22,20.209139 20.209139,22 18,22 L6,22 C3.790861,22 2,20.209139 2,18 L2,6 C2,3.790861 3.790861,2 6,2 L12.9,2 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M6,8 L6,20.5 C6,21.3284271 6.67157288,22 7.5,22 L16.5,22 C17.3284271,22 18,21.3284271 18,20.5 L18,8 L6,8 Z" fill="#000000" fill-rule="nonzero"></path>
<path d="M14,4.5 L14,4 C14,3.44771525 13.5522847,3 13,3 L11,3 C10.4477153,3 10,3.44771525 10,4 L10,4.5 L5.5,4.5 C5.22385763,4.5 5,4.72385763 5,5 L5,5.5 C5,5.77614237 5.22385763,6 5.5,6 L18.5,6 C18.7761424,6 19,5.77614237 19,5.5 L19,5 C19,4.72385763 18.7761424,4.5 18.5,4.5 L14,4.5 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
</td>
</tr>
<tr>
<td align="center">
<img src="assets/media/svg/avatars/009-boy-4.svg" width="30" alt="">
</td>
<td>
<b>Type :</b> <br>Workshop Session
</td>
<td>
<b>Jun 20, 2020 09:15 AM to 11:00 PM</b>
</td>
<td>
<b> Workshop</b>
</td>
<td align="center">
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm mx-3">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M12.2674799,18.2323597 L12.0084872,5.45852451 C12.0004303,5.06114792 12.1504154,4.6768183 12.4255037,4.38993949 L15.0030167,1.70195304 L17.5910752,4.40093695 C17.8599071,4.6812911 18.0095067,5.05499603 18.0083938,5.44341307 L17.9718262,18.2062508 C17.9694575,19.0329966 17.2985816,19.701953 16.4718324,19.701953 L13.7671717,19.701953 C12.9505952,19.701953 12.2840328,19.0487684 12.2674799,18.2323597 Z" fill="#000000" fill-rule="nonzero" transform="translate(14.701953, 10.701953) rotate(-135.000000) translate(-14.701953, -10.701953) "></path>
<path d="M12.9,2 C13.4522847,2 13.9,2.44771525 13.9,3 C13.9,3.55228475 13.4522847,4 12.9,4 L6,4 C4.8954305,4 4,4.8954305 4,6 L4,18 C4,19.1045695 4.8954305,20 6,20 L18,20 C19.1045695,20 20,19.1045695 20,18 L20,13 C20,12.4477153 20.4477153,12 21,12 C21.5522847,12 22,12.4477153 22,13 L22,18 C22,20.209139 20.209139,22 18,22 L6,22 C3.790861,22 2,20.209139 2,18 L2,6 C2,3.790861 3.790861,2 6,2 L12.9,2 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>
<a href="#" class="btn btn-icon btn-light btn-hover-primary btn-sm">
<span class="svg-icon svg-icon-md svg-icon-primary">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect x="0" y="0" width="24" height="24"></rect>
<path d="M6,8 L6,20.5 C6,21.3284271 6.67157288,22 7.5,22 L16.5,22 C17.3284271,22 18,21.3284271 18,20.5 L18,8 L6,8 Z" fill="#000000" fill-rule="nonzero"></path>
<path d="M14,4.5 L14,4 C14,3.44771525 13.5522847,3 13,3 L11,3 C10.4477153,3 10,3.44771525 10,4 L10,4.5 L5.5,4.5 C5.22385763,4.5 5,4.72385763 5,5 L5,5.5 C5,5.77614237 5.22385763,6 5.5,6 L18.5,6 C18.7761424,6 19,5.77614237 19,5.5 L19,5 C19,4.72385763 18.7761424,4.5 18.5,4.5 L14,4.5 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg><!--end::Svg Icon-->
</span>
</a>