-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprint_bar_code.html
More file actions
643 lines (607 loc) · 38.1 KB
/
print_bar_code.html
File metadata and controls
643 lines (607 loc) · 38.1 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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="keyword" content="" />
<meta name="author" content="theme_ocean" />
<!--! The above 6 meta tags *must* come first in the head; any other head content must come *after* these tags !-->
<!--! BEGIN: Apps Title-->
<title>ISBN Genration </title>
<!--! END: Apps Title-->
<!--! BEGIN: Favicon-->
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon.ico" />
<!--! END: Favicon-->
<!--! BEGIN: Bootstrap CSS-->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" />
<!--! END: Bootstrap CSS-->
<!--! BEGIN: Vendors CSS-->
<link rel="stylesheet" type="text/css" href="assets/vendors/css/vendors.min.css" />
<link rel="stylesheet" type="text/css" href="assets/vendors/css/daterangepicker.min.css" />
<!--! END: Vendors CSS-->
<!--! BEGIN: Custom CSS-->
<link rel="stylesheet" type="text/css" href="assets/css/theme.min.css" />
<!--! END: Custom CSS-->
<!--! HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries !-->
<!--! WARNING: Respond.js doesn"t work if you view the page via file: !-->
<!--[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]-->
</head>
<body>
<!--! ================================================================ !-->
<!--! [Start] Navigation Manu !-->
<!--! ================================================================ !-->
<nav class="nxl-navigation">
<div class="navbar-wrapper">
<div class="m-header">
<a href="index.html" class="b-brand">
<!-- ======== change your logo hear ============ -->
<img src="assets/images/toshokan_text.png" alt="" class="logo logo-lg" width="100%" />
<img src="assets/images/toshokan.png" alt="" class="logo logo-sm" />
</a>
</div>
<div class="navbar-content">
<ul class="nxl-navbar">
<li class="nxl-item nxl-caption">
<label>Navigation</label>
</li>
<li class="nxl-item nxl-hasmenu">
<a href="index.html" class="nxl-link">
<span class="nxl-micon"><i class="feather-airplay"></i></span>
<span class="nxl-mtext">Dashboard</span><span class="nxl-arrow"></span>
</a>
<ul class="nxl-submenu">
<!-- <li class="nxl-item"><a class="nxl-link" href="index.html">CRM</a></li>
<li class="nxl-item"><a class="nxl-link" href="analytics.html">Analytics</a></li> -->
</ul>
</li>
<li class="nxl-item nxl-hasmenu">
<a href="javascript:void(0);" class="nxl-link">
<span class="nxl-micon"><i class="feather-users"></i></span>
<span class="nxl-mtext">Users</span><span class="nxl-arrow"><i
class="feather-chevron-right"></i></span>
</a>
<ul class="nxl-submenu">
<li class="nxl-item"><a class="nxl-link" href="staff_users.html">Librarian/Admins</a></li>
<li class="nxl-item"><a class="nxl-link" href="student_users.html">Members</a>
<li class="nxl-item"><a class="nxl-link" href="add_user.html">Add User</a>
</ul>
</li>
<li class="nxl-item nxl-hasmenu">
<a href="javascript:void(0);" class="nxl-link">
<span class="nxl-micon"><i class="feather-settings"></i></span>
<span class="nxl-mtext">Library Management</span><span class="nxl-arrow"><i
class="feather-chevron-right"></i></span>
</a>
<ul class="nxl-submenu">
<li class="nxl-item"><a class="nxl-link" href="library_configuration.html">Library Configuration</a></li>
<li class="nxl-item"><a class="nxl-link" href="library_charges.html">Library Charges</a>
</ul>
</li>
<li class="nxl-item nxl-hasmenu">
<a href="javascript:void(0);" class="nxl-link">
<span class="nxl-micon"><i class="feather-grid"></i></span>
<span class="nxl-mtext">Catalog</span><span class="nxl-arrow"><i
class="feather-chevron-right"></i></span>
</a>
<ul class="nxl-submenu">
<li class="nxl-item"><a class="nxl-link" href="sections.html">Sections</a></li>
<li class="nxl-item"><a class="nxl-link" href="sub_section.html">Classification</a></li>
<li class="nxl-item"><a class="nxl-link" href="publishers.html">Publishers</a></li>
<li class="nxl-item"><a class="nxl-link" href="authors.html">Authors</a></li>
</ul>
</li>
<li class="nxl-item nxl-hasmenu">
<a href="javascript:void(0);" class="nxl-link">
<span class="nxl-micon"><i class="feather-book"></i></span>
<span class="nxl-mtext">Book Management</span><span class="nxl-arrow"><i
class="feather-chevron-right"></i></span>
</a>
<ul class="nxl-submenu">
<li class="nxl-item"><a class="nxl-link" href="add_book.html">Add Book</a></li>
<li class="nxl-item"><a class="nxl-link" href="books.html">All Books</a></li>
<li class="nxl-item"><a class="nxl-link" href="print_bar_code.html">Print Book Barcode</a></li>
</li>
</ul>
</li>
<li class="nxl-item nxl-hasmenu">
<a href="javascript:void(0);" class="nxl-link">
<span class="nxl-micon"><i class="feather-external-link"></i></span>
<span class="nxl-mtext">Book Circulation</span><span class="nxl-arrow"><i
class="feather-chevron-right"></i></span>
</a>
<ul class="nxl-submenu">
<li class="nxl-item"><a class="nxl-link" href="book_lending.html">Book Lending</a>
<li class="nxl-item"><a class="nxl-link" href="borrowed_books.html">Borrowed Books</a></li>
<li class="nxl-item"><a class="nxl-link" href="returned_books.html">Returned Books</a></li>
<li class="nxl-item"><a class="nxl-link" href="long_overdue_books.html">Long Overdue
Books</a>
</li>
</ul>
</li>
<li class="nxl-item nxl-hasmenu">
<a href="javascript:void(0);" class="nxl-link">
<span class="nxl-micon"><i class="feather-bar-chart"></i></span>
<span class="nxl-mtext">Shelf</span><span class="nxl-arrow"><i
class="feather-chevron-right"></i></span>
</a>
<ul class="nxl-submenu">
<li class="nxl-item"><a class="nxl-link" href="add_shelf.html">Add Shelf</a></li>
<li class="nxl-item"><a class="nxl-link" href="shelves.html">Shelves</a></li>
<li class="nxl-item"><a class="nxl-link" href="shelf_books.html">Shelf Books</a></li>
</ul>
</li>
<li class="nxl-item nxl-hasmenu">
<a href="javascript:void(0);" class="nxl-link">
<span class="nxl-micon"><i class="feather-dollar-sign"></i></span>
<span class="nxl-mtext">Wallet</span><span class="nxl-arrow"><i
class="feather-chevron-right"></i></span>
</a>
<ul class="nxl-submenu">
<li class="nxl-item"><a class="nxl-link" href="general_ledger.html">General Ledger</a></li>
<li class="nxl-item"><a class="nxl-link" href="make_payment.html">Make Payment</a>
</li>
<li class="nxl-item"><a class="nxl-link" href="user_balances.html">Balances</a></li>
</ul>
</li>
<li class="nxl-item nxl-hasmenu">
<a href="javascript:void(0);" class="nxl-link">
<span class="nxl-micon"><i class="feather-database"></i></span>
<span class="nxl-mtext">Inventory</span><span class="nxl-arrow"><i
class="feather-chevron-right"></i></span>
</a>
<ul class="nxl-submenu">
<li class="nxl-item"><a class="nxl-link" href="add_inventory_item.html">Add Inventory Item</a></li>
<li class="nxl-item"><a class="nxl-link" href="inventory.html">All Inventory</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!--! ================================================================ !-->
<!--! [End] Navigation Manu !-->
<!--! ================================================================ !-->
<!--! ================================================================ !-->
<!--! [Start] Header !-->
<!--! ================================================================ !-->
<header class="nxl-header">
<div class="header-wrapper">
<!--! [Start] Header Left !-->
<div class="header-left d-flex align-items-center gap-4">
<!--! [Start] nxl-head-mobile-toggler !-->
<a href="javascript:void(0);" class="nxl-head-mobile-toggler" id="mobile-collapse">
<div class="hamburger hamburger--arrowturn">
<div class="hamburger-box">
<div class="hamburger-inner"></div>
</div>
</div>
</a>
<!--! [Start] nxl-head-mobile-toggler !-->
<!--! [Start] nxl-navigation-toggle !-->
<div class="nxl-navigation-toggle">
<a href="javascript:void(0);" id="menu-mini-button">
<i class="feather-align-left"></i>
</a>
<a href="javascript:void(0);" id="menu-expend-button" style="display: none">
<i class="feather-arrow-right"></i>
</a>
</div>
<!--! [End] nxl-navigation-toggle !-->
<!--! [Start] nxl-lavel-mega-menu-toggle !-->
</div>
<!--! [End] Header Left !-->
<!--! [Start] Header Right !-->
<div class="header-right ms-auto">
<div class="d-flex align-items-center">
<div class="dropdown nxl-h-item nxl-header-search">
<a href="javascript:void(0);" class="nxl-head-link me-0" data-bs-toggle="dropdown"
data-bs-auto-close="outside">
<i class="feather-search"></i>
</a>
<div class="dropdown-menu dropdown-menu-end nxl-h-dropdown nxl-search-dropdown">
<div class="input-group search-form">
<span class="input-group-text">
<i class="feather-search fs-6 text-muted"></i>
</span>
<input type="text" class="form-control search-input-field" placeholder="Search...." />
<span class="input-group-text">
<button type="button" class="btn-close"></button>
</span>
</div>
<div class="dropdown-divider mt-0"></div>
</div>
</div>
<div class="nxl-h-item d-none d-sm-flex">
<div class="full-screen-switcher">
<a href="javascript:void(0);" class="nxl-head-link me-0"
onclick="$('body').fullScreenHelper('toggle');">
<i class="feather-maximize maximize"></i>
<i class="feather-minimize minimize"></i>
</a>
</div>
</div>
<div class="nxl-h-item dark-light-theme">
<a href="javascript:void(0);" class="nxl-head-link me-0 dark-button">
<i class="feather-moon"></i>
</a>
<a href="javascript:void(0);" class="nxl-head-link me-0 light-button" style="display: none">
<i class="feather-sun"></i>
</a>
</div>
<div class="dropdown nxl-h-item">
<a class="nxl-head-link me-3" data-bs-toggle="dropdown" href="#" role="button"
data-bs-auto-close="outside">
<i class="feather-bell"></i>
<span class="badge bg-danger nxl-h-badge">3</span>
</a>
<div class="dropdown-menu dropdown-menu-end nxl-h-dropdown nxl-notifications-menu">
<div class="d-flex justify-content-between align-items-center notifications-head">
<h6 class="fw-bold text-dark mb-0">Notifications</h6>
<a href="javascript:void(0);" class="fs-11 text-success text-end ms-auto"
data-bs-toggle="tooltip" title="Make as Read">
<i class="feather-check"></i>
<span>Make as Read</span>
</a>
</div>
<div class="notifications-item">
<img src="assets/images/avatar/2.png" alt="" class="rounded me-3 border" />
<div class="notifications-desc">
<a href="javascript:void(0);" class="font-body text-truncate-2-line"> <span
class="fw-semibold text-dark">Malanie Hanvey</span> We should talk about
that at lunch!</a>
<div class="d-flex justify-content-between align-items-center">
<div class="notifications-date text-muted border-bottom border-bottom-dashed">2
minutes ago</div>
<div class="d-flex align-items-center float-end gap-2">
<a href="javascript:void(0);"
class="d-block wd-8 ht-8 rounded-circle bg-gray-300"
data-bs-toggle="tooltip" title="Make as Read"></a>
<a href="javascript:void(0);" class="text-danger" data-bs-toggle="tooltip"
title="Remove">
<i class="feather-x fs-12"></i>
</a>
</div>
</div>
</div>
</div>
<div class="notifications-item">
<img src="assets/images/avatar/3.png" alt="" class="rounded me-3 border" />
<div class="notifications-desc">
<a href="javascript:void(0);" class="font-body text-truncate-2-line"> <span
class="fw-semibold text-dark">Valentine Maton</span> You can download the
latest invoices now.</a>
<div class="d-flex justify-content-between align-items-center">
<div class="notifications-date text-muted border-bottom border-bottom-dashed">36
minutes ago</div>
<div class="d-flex align-items-center float-end gap-2">
<a href="javascript:void(0);"
class="d-block wd-8 ht-8 rounded-circle bg-gray-300"
data-bs-toggle="tooltip" title="Make as Read"></a>
<a href="javascript:void(0);" class="text-danger" data-bs-toggle="tooltip"
title="Remove">
<i class="feather-x fs-12"></i>
</a>
</div>
</div>
</div>
</div>
<div class="notifications-item">
<img src="assets/images/avatar/4.png" alt="" class="rounded me-3 border" />
<div class="notifications-desc">
<a href="javascript:void(0);" class="font-body text-truncate-2-line"> <span
class="fw-semibold text-dark">Archie Cantones</span> Don't forget to pickup
Jeremy after school!</a>
<div class="d-flex justify-content-between align-items-center">
<div class="notifications-date text-muted border-bottom border-bottom-dashed">53
minutes ago</div>
<div class="d-flex align-items-center float-end gap-2">
<a href="javascript:void(0);"
class="d-block wd-8 ht-8 rounded-circle bg-gray-300"
data-bs-toggle="tooltip" title="Make as Read"></a>
<a href="javascript:void(0);" class="text-danger" data-bs-toggle="tooltip"
title="Remove">
<i class="feather-x fs-12"></i>
</a>
</div>
</div>
</div>
</div>
<div class="text-center notifications-footer">
<a href="javascript:void(0);" class="fs-13 fw-semibold text-dark">Alls Notifications</a>
</div>
</div>
</div>
<div class="dropdown nxl-h-item">
<a href="javascript:void(0);" data-bs-toggle="dropdown" role="button"
data-bs-auto-close="outside">
<img src="assets/images/avatar/1.png" alt="user-image" class="img-fluid user-avtar me-0" />
</a>
<div class="dropdown-menu dropdown-menu-end nxl-h-dropdown nxl-user-dropdown">
<div class="dropdown-header">
<div class="d-flex align-items-center">
<img src="assets/images/avatar/1.png" alt="user-image"
class="img-fluid user-avtar" />
<div>
<h6 class="text-dark mb-0">Alexandra Della </h6>
<span class="fs-12 fw-medium text-muted">alex.della@outlook.com</span>
</div>
</div>
</div>
<a href="javascript:void(0);" class="dropdown-item">
<i class="feather-user"></i>
<span>Profile Details</span>
</a>
<div class="dropdown-divider"></div>
<a href="./auth-login-minimal.html" class="dropdown-item">
<i class="feather-log-out"></i>
<span>Logout</span>
</a>
</div>
</div>
</div>
</div>
<!--! [End] Header Right !-->
</div>
</header>
<!--! ================================================================ !-->
<!--! [End] Header !-->
<!--! ================================================================ !-->
<!--! ================================================================ !-->
<!--! [Start] Main Content !-->
<!--! ================================================================ !-->
<main class="nxl-container">
<div class="nxl-content">
<!-- [ page-header ] start -->
<div class="page-header">
<div class="page-header-left d-flex align-items-center">
<div class="page-header-title">
<h5 class="m-b-10">Dashboard</h5>
</div>
<ul class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item">Books</li>
</ul>
</div>
<div class="page-header-right ms-auto">
<div class="page-header-right-items">
<div class="d-flex d-md-none">
<a href="javascript:void(0)" class="page-header-right-close-toggle">
<i class="feather-arrow-left me-2"></i>
<span>Back</span>
</a>
</div>
<div class="d-flex align-items-center gap-2 page-header-right-items-wrapper">
<div id="reportrange" class="reportrange-picker d-flex align-items-center">
<span class="reportrange-picker-field"></span>
</div>
</div>
</div>
<div class="d-md-none d-flex align-items-center">
<a href="javascript:void(0)" class="page-header-right-open-toggle">
<i class="feather-align-right fs-20"></i>
</a>
</div>
</div>
</div>
<!-- [ page-header ] end -->
<!-- [ Main Content ] start -->
<div class="main-content">
<div class="row">
<div class="col-xxl-6 col-lg-6">
<div class="card stretch stretch-full overflow-hidden">
<div class="bg-primary text-white">
<div class="p-4 d-flex justify-content-between align-items-center">
<h5 class="text-reset">Book Search </h5>
</div>
</div>
<div class="card-body">
<div class="d-flex align-items-center justify-content-between">
<div class="w-100">
<div class="mb-4">
<label class="form-label">Book Name <span class="text-danger">*</span></label>
<input type="text" class="form-control" placeholder="Last Name">
</div>
</div>
</div>
<hr class="border-top-dashed">
<ul class="list-unstyled mb-4">
<li class="hstack justify-content-between mb-4">
<span class="text-muted fw-medium hstack gap-3"><i class="feather-credit-card"></i>Author</span>
<a href="javascript:void(0);" class="float-end">Chimweso Faith Mukoko</a>
</li>
<li class="hstack justify-content-between mb-4">
<span class="text-muted fw-medium hstack gap-3"><i class="feather-phone"></i>Publisher</span>
<a href="javascript:void(0);" class="float-end">RockFell Publishers</a>
</li>
<li class="hstack justify-content-between mb-4">
<span class="text-muted fw-medium hstack gap-3"><i class="feather-map"></i>ISBN</span>
<a href="javascript:void(0);" class="float-end">0998-3948-3349-33</a>
</li>
<li class="hstack justify-content-between mb-0">
<span class="text-muted fw-medium hstack gap-3"><i class="feather-book"></i>Avaliable Copies</span>
<a href="javascript:void(0);" class="float-end">3</a>
</li>
</ul>
<div class="d-flex gap-2 text-center pt-4 ">
<!-- <a href="javascript:void(0);" class="w-50 btn btn-primary">
<i class="feather-edit me-2"></i>
<span>Generate ISBN</span>
</a> -->
</div>
</div>
</div>
</div>
<div class="col-xxl-6 col-lg-6">
<div class="card stretch stretch-full overflow-hidden">
<div class="bg-danger text-white">
<div class="p-4 d-flex justify-content-between align-items-center">
<h5 class="text-reset">Book ID </h5>
</div>
</div>
<div class="card-body">
<div class="d-flex align-items-center justify-content-between">
<div class="w-100">
<div>
<div class="fs-4 fw-bold text-dark"><span class="counter">9876-89-765456</span></div>
<h3 class="fs-13 fw-semibold text-truncate-1-line">Generated Book ID</h3>
</div>
</div>
</div>
<hr class="border-top-dashed">
<div>
<!-- <div class="fs-4 fw-bold text-dark"><span class="counter">9876-89-765456</span></div> -->
<h3 class="fs-13 fw-semibold text-truncate-1-line">Bar Code</h3>
<img src="https://barcodeguide.seagullscientific.com/Content/Resources/Images/ISBN.GIF" class="img-fluid rounded mx-auto" alt="Responsive image">
</div>
<div class="d-flex gap-2 text-center pt-4 ">
<a href="javascript:void(0);" class="w-50 btn btn-danger">
<i class="feather-edit me-2"></i>
<span>Print Bar Code</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- [ Main Content ] end -->
</div>
<!-- [ Footer ] start -->
<footer class="footer">
<p class="fs-11 text-muted fw-medium text-uppercase mb-0 copyright">
<span>Copyright © Toshokan</span>
<script>
document.write(new Date().getFullYear());
</script>
</p>
</footer>
<!-- [ Footer ] end -->
</main>
<!--! ================================================================ !-->
<!--! [End] Main Content !-->
<!--! ================================================================ !-->
<!--! ================================================================ !-->
<!--! BEGIN: Theme Customizer !-->
<!--! ================================================================ !-->
<div class="theme-customizer">
<div class="customizer-handle">
<a href="javascript:void(0);" class="cutomizer-open-trigger bg-primary">
<i class="feather-settings"></i>
</a>
</div>
<div class="customizer-sidebar-wrapper">
<div
class="customizer-sidebar-header px-4 ht-80 border-bottom d-flex align-items-center justify-content-between">
<h5 class="mb-0">Theme Settings</h5>
<a href="javascript:void(0);" class="cutomizer-close-trigger d-flex">
<i class="feather-x"></i>
</a>
</div>
<div class="customizer-sidebar-body position-relative p-4" data-scrollbar-target="#psScrollbarInit">
<!--! BEGIN: [Navigation] !-->
<div class="position-relative px-3 pb-3 pt-4 mt-3 mb-5 border border-gray-2 theme-options-set">
<label
class="py-1 px-2 fs-8 fw-bold text-uppercase text-muted text-spacing-2 bg-white border border-gray-2 position-absolute rounded-2 options-label"
style="top: -12px">Navigation</label>
<div class="row g-2 theme-options-items app-navigation" id="appNavigationList">
<div class="col-6 text-center single-option">
<input type="radio" class="btn-check" id="app-navigation-light" name="app-navigation"
value="1" data-app-navigation="app-navigation-light" checked />
<label
class="py-2 fs-9 fw-bold text-dark text-uppercase text-spacing-1 border border-gray-2 w-100 h-100 c-pointer position-relative options-label"
for="app-navigation-light">Light</label>
</div>
<div class="col-6 text-center single-option">
<input type="radio" class="btn-check" id="app-navigation-dark" name="app-navigation"
value="2" data-app-navigation="app-navigation-dark" />
<label
class="py-2 fs-9 fw-bold text-dark text-uppercase text-spacing-1 border border-gray-2 w-100 h-100 c-pointer position-relative options-label"
for="app-navigation-dark">Dark</label>
</div>
</div>
</div>
<!--! END: [Navigation] !-->
<!--! BEGIN: [Header] !-->
<div class="position-relative px-3 pb-3 pt-4 mt-3 mb-5 border border-gray-2 theme-options-set mt-5">
<label
class="py-1 px-2 fs-8 fw-bold text-uppercase text-muted text-spacing-2 bg-white border border-gray-2 position-absolute rounded-2 options-label"
style="top: -12px">Header</label>
<div class="row g-2 theme-options-items app-header" id="appHeaderList">
<div class="col-6 text-center single-option">
<input type="radio" class="btn-check" id="app-header-light" name="app-header" value="1"
data-app-header="app-header-light" checked />
<label
class="py-2 fs-9 fw-bold text-dark text-uppercase text-spacing-1 border border-gray-2 w-100 h-100 c-pointer position-relative options-label"
for="app-header-light">Light</label>
</div>
<div class="col-6 text-center single-option">
<input type="radio" class="btn-check" id="app-header-dark" name="app-header" value="2"
data-app-header="app-header-dark" />
<label
class="py-2 fs-9 fw-bold text-dark text-uppercase text-spacing-1 border border-gray-2 w-100 h-100 c-pointer position-relative options-label"
for="app-header-dark">Dark</label>
</div>
</div>
</div>
<!--! END: [Header] !-->
<!--! BEGIN: [Skins] !-->
<div class="position-relative px-3 pb-3 pt-4 mt-3 mb-5 border border-gray-2 theme-options-set">
<label
class="py-1 px-2 fs-8 fw-bold text-uppercase text-muted text-spacing-2 bg-white border border-gray-2 position-absolute rounded-2 options-label"
style="top: -12px">Skins</label>
<div class="row g-2 theme-options-items app-skin" id="appSkinList">
<div class="col-6 text-center position-relative single-option light-button active">
<input type="radio" class="btn-check" id="app-skin-light" name="app-skin" value="1"
data-app-skin="app-skin-light" />
<label
class="py-2 fs-9 fw-bold text-dark text-uppercase text-spacing-1 border border-gray-2 w-100 h-100 c-pointer position-relative options-label"
for="app-skin-light">Light</label>
</div>
<div class="col-6 text-center position-relative single-option dark-button">
<input type="radio" class="btn-check" id="app-skin-dark" name="app-skin" value="2"
data-app-skin="app-skin-dark" />
<label
class="py-2 fs-9 fw-bold text-dark text-uppercase text-spacing-1 border border-gray-2 w-100 h-100 c-pointer position-relative options-label"
for="app-skin-dark">Dark</label>
</div>
</div>
</div>
<!--! END: [Skins] !-->
</div>
<div class="customizer-sidebar-footer px-4 ht-60 border-top d-flex align-items-center gap-2">
<div class="flex-fill w-50">
<a href="javascript:void(0);" class="btn btn-danger" data-style="reset-all-common-style">Reset</a>
</div>
</div>
</div>
</div>
<!--! ================================================================ !-->
<!--! [End] Theme Customizer !-->
<!--! ================================================================ !-->
<!--! ================================================================ !-->
<!--! Footer Script !-->
<!--! ================================================================ !-->
<!--! BEGIN: Vendors JS !-->
<script src="assets/vendors/js/vendors.min.js"></script>
<!-- vendors.min.js {always must need to be top} -->
<script src="assets/vendors/js/daterangepicker.min.js"></script>
<script src="assets/vendors/js/apexcharts.min.js"></script>
<script src="assets/vendors/js/circle-progress.min.js"></script>
<!--! END: Vendors JS !-->
<!--! BEGIN: Apps Init !-->
<script src="assets/js/common-init.min.js"></script>
<script src="assets/js/dashboard-init.min.js"></script>
<!--! END: Apps Init !-->
<!--! BEGIN: Theme Customizer !-->
<script src="assets/js/theme-customizer-init.min.js"></script>
<script src="assets/js/widgets-charts-init.min.js"></script>
<!--! END: Apps Init !-->
<!--! END: Theme Customizer !-->
<!--! END: Theme Customizer !-->
</body>
</html>