-
Notifications
You must be signed in to change notification settings - Fork 15
/
Component - Modal.html
785 lines (765 loc) · 45.3 KB
/
Component - Modal.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="assets/img/logo_virtue.png">
<title>Virtue - Modal</title>
<!-- Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap" rel="stylesheet">
<!-- Tailwind CSS -->
<link href="assets/dist/tailwind.css" rel="stylesheet">
<!-- Icons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- Animations -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</head>
<body class="full-body" x-data="{sidebar: true}">
<!-- preloader -->
<div id="preloader" class="preloader">
<div class="preloader-border">
<div class="preloader-dot"></div>
</div>
<span class="preloader-text">Loading</span>
</div>
<!-- end preloader -->
<!-- sidebar -->
<div id="sidebar" class="sidebar" x-show="sidebar" :class="sidebar ? 'hidden lg:block' : 'block lg:hidden'" x-transition:enter="animate__animated animate__bounceInLeft">
<div class="sidebar-header">
<a href="#" class="flex items-center lg:justify-center">
<div class="flex justify-center items-center box-content bg-quaternary shadow-neumorphism h-10 w-10 rounded-xl mr-4">
<!-- For character logo-->
<!-- <span class="text-primary font-black text-2xl">V</span> -->
<!-- For image logo-->
<img src="assets/img/logo_virtue.png" class="w-7 h-7" alt="logo">
</div>
<span class="tracking-widest text-primary text-xl font-semibold lg:text-2xl">
Virtue
</span>
</a>
<div class="block lg:hidden">
<button class="flex justify-center items-center py-2 box-content bg-quaternary shadow-neumorphism w-10 rounded-xl" @click="sidebar = false">
<i class='bx bx-x bx-sm text-primary'></i>
</button>
</div>
</div>
<hr class="divider">
<div class="sidebar-wrap">
<div class="sidebar-body">
<ul>
<li class="sidebar-item">
<a href="index.html" class="sidebar-item-link">
<i class='bx bxs-dashboard bx-xs'></i>
<span class="sidebar-item-text line-clamp-1">Dashboard</span>
</a>
</li>
<li class="sidebar-item">
<a href="Widget.html" class="sidebar-item-link">
<i class='bx bxs-widget bx-xs'></i>
<span class="sidebar-item-text line-clamp-1">Widget</span>
</a>
</li>
<li class="sidebar-list" x-data="{ open: true }">
<button class="sidebar-list-link active" @click="open = !open">
<i class='bx bxs-component bx-xs'></i>
<span class="sidebar-item-text line-clamp-1">Component</span>
<i class='bx bxs-right-arrow ml-4 transform duration-500' :class="open ? 'bx-rotate-90' : ''"></i>
</button>
<ul class="sidebar-list-dropdown transform duration-500" x-show="open" x-transition >
<li class="list">
<a href="Component - Alert.html"> Alert</a>
</li>
<li class="list">
<a href="Component - Badge.html"> Badge</a>
</li>
<li class="list">
<a href="Component - Button.html"> Button</a>
</li>
<li class="list">
<a href="Component - Card.html"> Card</a>
</li>
<li class="list">
<a href="Component - Colors.html"> Color</a>
</li>
<li class="list">
<a href="Component - List Group.html"> List Group</a>
</li>
<li class="list-active">
<a href="Component - Modal.html"> Modal</a>
</li>
<li class="list">
<a href="Component - Pagination.html"> Pagination</a>
</li>
<li class="list">
<a href="Component - Tooltip.html"> Tooltip</a>
</li>
</ul>
</li>
<li class="sidebar-list" x-data="{ open: false }">
<button class="sidebar-list-link" @click="open = !open">
<i class='bx bx-clipboard bx-xs'></i>
<span class="sidebar-item-text line-clamp-1">Form Element</span>
<i class='bx bxs-right-arrow ml-4 transform duration-500' :class="open ? 'bx-rotate-90' : ''"></i>
</button>
<ul class="sidebar-list-dropdown transform duration-500" x-show="open" x-transition >
<li class="list">
<a href="Form Element - Input.html"> Input</a>
</li>
<li class="list">
<a href="Form Element - Input Group.html"> Input Group</a>
</li>
</ul>
</li>
<li class="sidebar-list" x-data="{ open: false }">
<button class="sidebar-list-link" @click="open = !open">
<i class='bx bx-table bx-xs'></i>
<span class="sidebar-item-text line-clamp-1">Tables</span>
<i class='bx bxs-right-arrow ml-4 transform duration-500' :class="open ? 'bx-rotate-90' : ''"></i>
</button>
<ul class="sidebar-list-dropdown transform duration-500" x-show="open" x-transition >
<li class="list">
<a href="Table - Default Table.html"> Default Table</a>
</li>
<li class="list">
<a href="Table - Datatable.html"> DataTable</a>
</li>
</ul>
</li>
<li class="sidebar-list" x-data="{ open: false }">
<button class="sidebar-list-link" @click="open = !open">
<i class='bx bxs-bar-chart-alt-2 bx-xs' ></i>
<span class="sidebar-item-text line-clamp-1">Charts</span>
<i class='bx bxs-right-arrow ml-4 transform duration-500' :class="open ? 'bx-rotate-90' : ''"></i>
</button>
<ul class="sidebar-list-dropdown transform duration-500" x-show="open" x-transition >
<li class="list">
<a href="Charts - ApexChart.html"> ApexChart</a>
</li>
</ul>
</li>
<li class="sidebar-list" x-data="{ open: false }">
<button class="sidebar-list-link" @click="open = !open">
<i class='bx bx-user-circle bx-xs'></i>
<span class="sidebar-item-text line-clamp-1">Authentication</span>
<i class='bx bxs-right-arrow ml-4 transform duration-500' :class="open ? 'bx-rotate-90' : ''"></i>
</button>
<ul class="sidebar-list-dropdown transform duration-500" x-show="open" x-transition >
<li class="list">
<a href="Auth - Login.html"> Login</a>
</li>
<li class="list">
<a href="Auth - Register.html"> Register</a>
</li>
<li class="list">
<a href="Auth - Forgot Password.html"> Forgot Password</a>
</li>
<li class="list">
<a href="Auth - Error 404.html"> Error 404</a>
</li>
<li class="list">
<a href="Auth - Error 500.html"> Error 500</a>
</li>
<li class="list">
<a href="Auth - Maintenance.html"> Maintenance</a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="Resource.html" class="sidebar-item-link">
<i class='bx bx-library bx-xs'></i>
<span class="sidebar-item-text line-clamp-1">Resource</span>
</a>
</li>
<li class="sidebar-item">
<a href="License.html" class="sidebar-item-link">
<i class='bx bxs-certification bx-xs'></i>
<span class="sidebar-item-text line-clamp-1">License</span>
</a>
</li>
</ul>
</div>
</div>
<div class="sidebar-footer">
<div class="card">
<span>
Designed and Developed by <a href="#" class="text-primary font-semibold">Ridwan.</a>
Under License <a href="License.html" class="text-primary font-semibold">MIT.</a>
</span>
</div>
<div class="card flex justify-center">
<span class="font-medium text-primary">
Virtue 1.0.0
</span>
</div>
</div>
</div>
<!-- end sidebar -->
<!-- main -->
<main class="main" x-bind:class="{'lg:w-full': ! sidebar }" >
<!-- nav -->
<nav class="flex justify-between">
<div class="py-4">
<div class="flex flex-row ">
<button class="flex btn-icon lg:hidden" @click="sidebar = true" id="btn-sidebar">
<i class='bx bx-menu bx-sm text-primary'></i>
</button>
<button class="lg:flex btn-icon hidden" @click="sidebar = !sidebar" id="btn-sidebar">
<i class='bx bx-menu bx-sm text-primary'></i>
</button>
<div class="hidden lg:block">
<div class="search">
<input type="text" class="search-input" placeholder="Search...">
<button class="search-btn">
<i class='bx bx-search-alt bx-sm' ></i>
</button>
</div>
</div>
</div>
</div>
<div class="hidden lg:block w-3/12 py-4">
<div class="flex justify-start">
<div class="flex justify-start" x-data="{ open: false }">
<button class="flex btn-icon" @click="open = ! open">
<span class="notif-dot-success animate-ping"></span>
<i class='bx bxs-inbox bx-sm bx-tada-hover text-primary' ></i>
</button>
<div class="absolute mt-16" x-show="open" @click.outside="open = false" x-transition>
<div class="w-60 h-auto p-4 bg-quaternary shadow-neumorphism text-tertiary rounded-lg">
<a href="#" class="flex justify-start p-2">
<img src="assets/img/faces/1.jpg" class="rounded-full h-10 w-10" alt="">
<div class="flex flex-col w-60">
<h1 class="px-2 font-semibold text-md">Rey</h1>
<p class="px-2 font-light text-xs line-clamp-1">Hi, I need your help.</p>
<span class="px-2 font-light text-xs">07:00 AM</span>
</div>
</a>
<a href="#" class="flex justify-start p-2">
<img src="assets/img/faces/2.jpg" class="rounded-full h-10 w-10" alt="">
<div class="flex flex-col w-60">
<h1 class="px-2 font-semibold text-md">Mike</h1>
<p class="px-2 font-light text-xs line-clamp-1">Can we meet tonight?.</p>
<span class="px-2 font-light text-xs">07:05 AM</span>
</div>
</a>
<a href="#" class="flex justify-start p-2">
<img src="assets/img/faces/5.jpg" class="rounded-full h-10 w-10" alt="">
<div class="flex flex-col w-60">
<h1 class="px-2 font-semibold text-md line-clamp-1">Verra</h1>
<p class="px-2 font-light text-xs line-clamp-1">What will you do today?</p>
<span class="px-2 font-light text-xs">07:54 AM</span>
</div>
</a>
<hr class="border-gray-300 max-w-7xl">
<div class="flex justify-center items-center pt-4">
<a href="#" class="px-2 font-medium">Check all message</a>
<i class='bx bxs-right-arrow-circle bx-xs'></i>
</div>
</div>
</div>
</div>
<div class="flex justify-start" x-data="{ open: false }">
<button class="flex btn-icon lg:h-10 lg:w-10" @click="open = ! open">
<span class="notif-dot-warning animate-ping"></span>
<i class='bx bxs-notification bx-sm bx-tada-hover text-primary' ></i>
</button>
<div class="absolute mt-16" x-show="open" @click.outside="open = false" x-transition>
<div class="w-60 h-auto p-4 bg-quaternary shadow-neumorphism text-tertiary rounded-lg">
<a href="#" class="flex justify-start p-2">
<div class="card-icon p-2 bg-danger text-quaternary">
<i class='bx bx-shape-circle bx-sm'></i>
</div>
<div class="flex flex-col w-60">
<h1 class="px-2 font-semibold text-md">Jhon</h1>
<p class="px-2 font-light text-xs line-clamp-1">Jhon has made an access request.</p>
<span class="px-2 font-light text-xs">09:00 AM</span>
</div>
</a>
<a href="#" class="flex justify-start p-2">
<div class="card-icon p-2 bg-info text-quaternary">
<i class='bx bx-slider-alt bx-sm'></i>
</div>
<div class="flex flex-col w-60">
<h1 class="px-2 font-semibold text-md">Setting</h1>
<p class="px-2 font-light text-xs line-clamp-1">You have customized this template.</p>
<span class="px-2 font-light text-xs">09:20 AM</span>
</div>
</a>
<a href="#" class="flex justify-start p-2">
<div class="card-icon p-2 bg-success text-quaternary">
<i class='bx bx-paste bx-sm'></i>
</div>
<div class="flex flex-col w-60">
<h1 class="px-2 font-semibold text-md line-clamp-1">Event Today</h1>
<p class="px-2 font-light text-xs line-clamp-1">Just a reminder that you have event.</p>
<span class="px-2 font-light text-xs">09:24 AM</span>
</div>
</a>
<hr class="border-gray-300 max-w-7xl">
<div class="flex justify-center items-center pt-4">
<a href="#" class="px-2 font-medium">Check all notifcation</a>
<i class='bx bxs-right-arrow-circle bx-xs'></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hidden lg:block w-9/12 ">
<div x-data="{ open: false }" class="flex justify-end py-4">
<div class="hidden lg:block">
<p class="font-semibold py-2 px-4 tracking-wider">Hi, Muhammad</p>
</div>
<button class="h-10 w-10 border-tertiary rounded-full" @click="open = ! open">
<img src="assets/img/faces/7.jpg" class="w-10 rounded-full" alt="">
</button>
<div class="absolute mt-16" x-show="open" @click.outside="open = false" x-transition>
<div class="w-60 h-w-60 p-4 bg-quaternary shadow-neumorphism text-tertiary rounded-lg">
<a href="#" class="flex-card">
<div class="card-icon">
<i class='bx bxs-user-circle bx-sm text-primary' ></i>
</div>
<span class="px-2 font-medium">Profile</span>
</a>
<a href="#" class="flex-card">
<div class="card-icon">
<i class='bx bx-slider-alt bx-sm text-primary'></i>
</div>
<span class="px-2 font-medium">Setting</span>
</a>
<hr class="border-gray-300">
<a href="#" class="flex-card">
<div class="card-icon">
<i class='bx bx-exit bx-sm text-primary'></i>
</div>
<span class="px-2 font-medium ">logout</span>
</a>
</div>
</div>
</div>
</div>
<!-- for mobile -->
<div class="flex flex-grow items-center justify-center">
<div class="block lg:hidden">
<a href="#" class="flex items-center justify-center">
<span class="tracking-widest text-primary text-lg font-semibold ">
Virtue
</span>
</a>
</div>
</div>
<div class="flex flex-none">
<div class="block lg:hidden ">
<div x-data="{ open: false }" class="flex justify-end py-4">
<button class="flex btn-icon" @click="open = ! open">
<i class='bx bx-dots-horizontal-rounded bx-sm text-primary' ></i>
</button>
<div class="absolute mt-16" x-show="open" @click.outside="open = false" x-transition:enter="animate__animated animate__bounceInDown" x-transition:leave="animate__animated animate__bounceOutUp">
<div class="w-60 h-w-60 p-4 bg-quaternary shadow-neumorphism text-tertiary rounded-lg">
<div class="flex-card">
<button class="h-10 w-10 border-tertiary rounded-full" @click="open = ! open">
<img src="assets/img/faces/7.jpg" class="w-10 rounded-full" alt="">
</button>
<p class="flex justify-center items-center font-semibold px-4 tracking-wider">Hi, Muhammad</p>
</div>
<hr class="divider">
<a href="#" class="flex-card">
<div class="card-icon">
<span class="notif-dot-success"></span>
<i class='bx bxs-inbox bx-sm text-primary' ></i>
</div>
<span class="px-2 font-medium">Inbox</span>
</a>
<a href="#" class="flex-card">
<div class="card-icon">
<span class="notif-dot-warning"></span>
<i class='bx bxs-notification bx-sm text-primary'></i>
</div>
<span class="px-2 font-medium">Notification</span>
</a>
<hr class="divider">
<a href="#" class="flex-card">
<div class="card-icon">
<i class='bx bxs-user-circle bx-sm text-primary'></i>
</div>
<span class="px-2 font-medium">Profile</span>
</a>
<a href="#" class="flex-card">
<div class="card-icon">
<i class='bx bx-slider-alt bx-sm text-primary'></i>
</div>
<span class="px-2 font-medium">Setting</span>
</a>
<hr class="border-gray-300">
<a href="#" class="flex-card">
<div class="card-icon">
<i class='bx bx-exit bx-sm text-primary'></i>
</div>
<span class="px-2 font-medium ">logout</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- end for mobile -->
</nav>
<hr class="divider">
<!-- end nav -->
<!-- section -->
<section class="section">
<!-- header -->
<div class="card flex justify-between lg:items-center flex-col lg:flex-row">
<div class="flex justify-start">
<h1 class="text-primary font-medium text-2xl tracking-widest">Modal</h1> <!-- Title -->
<span class="text-xs"></span> <!-- Sub Title -->
</div>
<div class="flex justify-end">
<span class="text-sm"><a href="#" class="hover:text-primary">Dashboard /</a> Modal</span>
</div>
</div>
<!-- end header -->
<!-- body -->
<div class="grid lg:grid-cols-2 gap-4">
<div class="card flex-col">
<div class="h-card">
<span class="tracking-widest font-semibold text-primary mb-4">This is Modal</span> <!-- Title -->
</div>
<div class="flex flex-row gap-2 flex-wrap">
<button data-modalButton="default-modal" class="btn-primary-md">Default Modal</button>
<button data-modalButton="simple-modal" class="btn-primary-md">Simple Modal</button>
<button data-modalButton="line-modal" class="btn-primary-md">Line Modal</button>
</div>
</div>
<div class="card flex-col">
<div class="h-card">
<span class="tracking-widest font-semibold text-primary mb-4">Modal Size</span> <!-- Title -->
</div>
<div class="flex flex-row gap-2 flex-wrap">
<button data-modalButton="small-modal" class="btn-secondary-md">Small Modal</button>
<button data-modalButton="medium-modal" class="btn-secondary-md">Medium Modal</button>
<button data-modalButton="large-modal" class="btn-secondary-md">Large Modal</button>
</div>
</div>
<div class="card flex-col">
<div class="h-card">
<span class="tracking-widest font-semibold text-primary mb-4">Alert Modal</span> <!-- Title -->
</div>
<div class="flex flex-row gap-2 flex-wrap">
<button data-modalButton="success-modal" class="btn-success-md">Success Alert Modal</button>
<button data-modalButton="danger-modal" class="btn-danger-md">Danger Alert Modal</button>
<button data-modalButton="warning-modal" class="btn-warning-md">Warning Alert Modal</button>
<button data-modalButton="info-modal" class="btn-info-md">Info Alert Modal</button>
</div>
</div>
<div class="card flex-col">
<div class="h-card">
<span class="tracking-widest font-semibold text-primary mb-4">Modal Authentication</span> <!-- Title -->
</div>
<div class="flex flex-row gap-2 flex-wrap">
<button data-modalButton="signup-modal" class="btn-tertiary-md">Modal SignUp</button>
<button data-modalButton="signin-modal" class="btn-tertiary-md">Modal SignIn</button>
</div>
</div>
</div>
<!-- end body -->
</section>
<!-- end section -->
</main>
<!-- end main -->
<!-- simple modal -->
<div class="modal items-center hidden" data-modal="simpleModal">
<div class="modal-card-medium animate__animated animate__jackInTheBox">
<div class="modal-header">
<h1 class="font-bold text-lg">Simple Modal</h1>
<button data-dismiss="modal" class="btn-primary-outline-sm">
<i class='bx bx-x bx-sm'></i>
</button>
</div>
<div class="modal-body medium-modal">
<span>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by injected humour,
or randomised words which don't look even slightly believable.
If you are going to use a passage of Lorem Ipsum, you need to be sure there
isn't anything embarrassing hidden in the middle of text.
</span>
</div>
</div>
</div>
<!-- end simple modal -->
<!-- default modal -->
<div class="modal items-center hidden" data-modal="defaultModal">
<div class="modal-card-medium animate__animated animate__jackInTheBox">
<div class="modal-header">
<h1 class="font-bold text-lg">Default Modal</h1>
<button data-dismiss="modal" class="btn-primary-outline-sm">
<i class='bx bx-x bx-sm'></i>
</button>
</div>
<hr class="divider">
<div class="modal-body medium-modal">
<span>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by injected humour,
or randomised words which don't look even slightly believable.
If you are going to use a passage of Lorem Ipsum, you need to be sure there
isn't anything embarrassing hidden in the middle of text.
</span>
</div>
<hr class="divider">
<div class="modal-footer">
<button data-dismiss="modal">Close</button>
<button class="btn-primary-md">Save</button>
</div>
</div>
</div>
<!-- end default modal -->
<!-- line modal -->
<div class="modal items-center hidden" data-modal="lineModal">
<div class="modal-card-medium border-4 border-primary animate__animated animate__jackInTheBox">
<div class="modal-header">
<h1 class="font-bold text-lg">Line Modal</h1>
<button data-dismiss="modal" class="btn-primary-outline-sm">
<i class='bx bx-x bx-sm'></i>
</button>
</div>
<hr class="divider">
<div class="modal-body medium-modal">
<span>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by injected humour,
or randomised words which don't look even slightly believable.
If you are going to use a passage of Lorem Ipsum, you need to be sure there
isn't anything embarrassing hidden in the middle of text.
</span>
</div>
<hr class="divider">
<div class="modal-footer font-semibold">
<button data-dismiss="modal">Close</button>
<button class="btn-primary-md">Save</button>
</div>
</div>
</div>
<!-- end line modal -->
<!-- small modal -->
<div class="modal items-center hidden" data-modal="smallModal">
<div class="modal-card-small animate__animated animate__jackInTheBox">
<div class="modal-header">
<h1 class="font-bold text-lg">Small Modal</h1>
<button data-dismiss="modal" class="btn-primary-outline-sm">
<i class='bx bx-x bx-sm'></i>
</button>
</div>
<div class="modal-body small-modal">
<span>
Hello World...
</span>
</div>
</div>
</div>
<!-- end small modal -->
<!-- medium modal -->
<div class="modal items-center hidden" data-modal="mediumModal">
<div class="modal-card-medium animate__animated animate__jackInTheBox">
<div class="modal-header">
<h1 class="font-bold text-lg">Medium Modal</h1>
<button data-dismiss="modal" class="btn-primary-outline-sm">
<i class='bx bx-x bx-sm'></i>
</button>
</div>
<hr class="divider">
<div class="modal-body medium-modal">
<span>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by injected humour,
or randomised words which don't look even slightly believable.
If you are going to use a passage of Lorem Ipsum, you need to be sure there
isn't anything embarrassing hidden in the middle of text.
</span>
</div>
<hr class="divider">
<div class="modal-footer">
<button data-dismiss="modal">Close</button>
<button class="btn-primary-md">Save</button>
</div>
</div>
</div>
<!-- end medium modal -->
<!-- large modal -->
<div class="modal items-center hidden" data-modal="largeModal">
<div class="modal-card-large border-4 border-primary animate__animated animate__jackInTheBox">
<div class="modal-header">
<h1 class="font-bold text-lg">Large Modal</h1>
<button data-dismiss="modal" class="btn-primary-outline-sm">
<i class='bx bx-x bx-sm'></i>
</button>
</div>
<hr class="divider">
<div class="modal-body large-modal">
<span>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by injected humour,
or randomised words which don't look even slightly believable.
If you are going to use a passage of Lorem Ipsum, you need to be sure there
isn't anything embarrassing hidden in the middle of text.
</span>
</div>
<hr class="divider">
<div class="modal-footer font-semibold">
<button data-dismiss="modal">Close</button>
<button class="btn-primary-md">Save</button>
</div>
</div>
</div>
<!-- end large modal -->
<!-- success alert modal -->
<div class="modal items-center hidden" data-modal="successModal">
<div class="alert-modal animate__animated animate__jackInTheBox">
<div class="alert-modal-header">
<img src="assets/img/illustration/success.png" class="w-60" alt="">
</div>
<div class="alert-modal-body">
<h1 class="font-bold text-xl mb-4">Congratulations!</h1>
<span>
This is modal success.
</span>
</div>
<hr class="divider">
<div class="alert-modal-footer">
<button data-dismiss="modal" class="btn-success-md">Done</button>
</div>
</div>
</div>
<!-- end success alert modal -->
<!-- danger alert modal -->
<div class="modal items-center hidden" data-modal="dangerModal">
<div class="alert-modal animate__animated animate__jackInTheBox">
<div class="alert-modal-header">
<img src="assets/img/illustration/danger.png" class="w-60" alt="">
</div>
<div class="alert-modal-body">
<h1 class="font-bold text-xl mb-4">Error!</h1>
<span>
This is modal danger.
</span>
</div>
<hr class="divider">
<div class="alert-modal-footer">
<button data-dismiss="modal" class="btn-danger-md">OK</button>
</div>
</div>
</div>
<!-- end danger alert modal -->
<!-- warning alert modal -->
<div class="modal items-center hidden" data-modal="warningModal">
<div class="alert-modal animate__animated animate__jackInTheBox">
<div class="alert-modal-header">
<div class="flex justify-center">
<img src="assets/img/illustration/warning.png" class="w-60" alt="">
</div>
</div>
<div class="alert-modal-body">
<h1 class="font-bold text-xl mb-4">Warning!</h1>
<span>
This is modal warning.
</span>
</div>
<hr class="divider">
<div class="alert-modal-footer">
<button data-dismiss="modal" class="btn-warning-md">OK</button>
</div>
</div>
</div>
<!-- end warning alert modal -->
<!-- info alert modal -->
<div class="modal items-center hidden" data-modal="infoModal">
<div class="alert-modal animate__animated animate__jackInTheBox">
<div class="alert-modal-header">
<div class="flex justify-center">
<img src="assets/img/illustration/info.png" class="w-60" alt="">
</div>
</div>
<div class="alert-modal-body">
<h1 class="font-bold text-xl mb-4">Info!</h1>
<span>
This is modal info.
</span>
</div>
<hr class="divider">
<div class="alert-modal-footer">
<button data-dismiss="modal" class="btn-info-md">OK</button>
</div>
</div>
</div>
<!-- end info alert modal -->
<!-- signup modal -->
<div class="modal items-center hidden" data-modal="signupModal">
<div class="box-content rounded-xl bg-quaternary p-10 animate__animated animate__jackInTheBox">
<div class="flex justify-center">
<img src="assets/img/logo_virtue.png" class="w-10" alt="">
</div>
<div class="flex justify-center flex-col gap-10 mt-4">
<h1 class="text-center text-xl font-bold text-primary">Sign Up</h1>
<div class="flex justify-center flex-col gap-4">
<div class="flex flex-col gap-2">
<input type="text" class="input-r-full focus-primary" placeholder="Enter your name...">
<!-- <span class="helper-danger">text helper</span> -->
</div>
<div class="flex flex-col gap-2">
<input type="email" class="input-r-full focus-primary" placeholder="Enter your email...">
<!-- <span class="helper-danger">text helper</span> -->
</div>
<div class="flex flex-col gap-2">
<input type="password" class="input-r-full focus-primary" placeholder="Enter your password...">
<!-- <span class="helper-danger">text helper</span> -->
</div>
<div class="flex flex-col gap-2">
<input type="password" class="input-r-full focus-primary" placeholder="Confirm Password...">
<!-- <span class="helper-danger">text helper</span> -->
</div>
<div class="flex flex-col gap-2">
<button class="btn-primary-md rounded-full">Sign Up</button>
<button class="btn-secondary-md rounded-full" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- end signup modal -->
<!-- signin modal -->
<div class="modal items-center hidden" data-modal="signinModal">
<div class="box-content rounded-xl bg-quaternary p-10 animate__animated animate__jackInTheBox">
<div class="flex justify-center">
<img src="assets/img/logo_virtue.png" class="w-10" alt="">
</div>
<div class="flex justify-center flex-col gap-10 mt-4">
<h1 class="text-center text-xl font-bold text-primary">Sign In</h1>
<div class="flex justify-center flex-col gap-4">
<div class="flex flex-col gap-2">
<input type="email" class="input-r-full focus-primary" placeholder="Enter your email...">
<!-- <span class="text-xs font-semibold pl-4 text-danger">text helper</span> -->
</div>
<div class="flex flex-col gap-2">
<input type="password" class="input-r-full focus-primary" placeholder="Enter your password...">
<!-- <span class="text-xs font-semibold pl-4 text-danger">text helper</span> -->
</div>
<div class="flex flex-col gap-2">
<button class="btn-primary-md rounded-full">Sign In</button>
<button class="btn-secondary-md rounded-full" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- end signin modal -->
<!-- Alpine JS -->
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script>
<!-- JQuery -->
<script src="assets/node_modules/jquery/dist/jquery.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>