Files
site/res/templates/form-checkbox-radio.html
2025-12-27 21:59:58 +08:00

2085 lines
140 KiB
HTML

<!DOCTYPE html>
<html lang="en" dir="ltr" data-bs-theme="light" data-color-theme="Blue_Theme" data-layout="vertical">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon icon-->
<link rel="shortcut icon" type="image/png" href="../assets/images/logos/favicon.png" />
<!-- Core Css -->
<link rel="stylesheet" href="../assets/css/styles.css" />
<title>Modernize Bootstrap Admin</title>
<link rel="stylesheet" href="../assets/libs/prismjs/themes/prism-okaidia.min.css">
</head>
<body class="link-sidebar">
{{template "components/preloader.html" .}}
<div id="main-wrapper">
<!-- Sidebar Start -->
{{template "components/sidebar.html" .}}
<!-- Sidebar End -->
<div class="page-wrapper">
<!-- Header Start -->
{{template "components/topbar.html" .}}
<!-- Header End -->
<div class="body-wrapper">
<div class="container-fluid">
<div class="card bg-info-subtle shadow-none position-relative overflow-hidden mb-4">
<div class="card-body px-4 py-3">
<div class="row align-items-center">
<div class="col-9">
<h4 class="fw-semibold mb-8">Checkboxes</h4>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a class="text-muted text-decoration-none" href="../main/index.html">Home</a>
</li>
<li class="breadcrumb-item" aria-current="page">Checkboxes</li>
</ol>
</nav>
</div>
<div class="col-3">
<div class="text-center mb-n5">
<img src="../assets/images/breadcrumb/ChatBc.png" alt="modernize-img" class="img-fluid mb-n4" />
</div>
</div>
</div>
</div>
</div>
<!-- ------------------------------------------ -->
<!-- checkboxs -->
<!-- ------------------------------------------ -->
<div class="row">
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Checks -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Checks</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code1-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code1-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Checks -View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;form-check&quot;&gt;
&lt;input class=&quot;form-check-input&quot; type=&quot;checkbox&quot; value=&quot;&quot; id=&quot;flexCheckDefault&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;flexCheckDefault&quot;&gt;
Default checkbox
&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check&quot;&gt;
&lt;input class=&quot;form-check-input&quot; type=&quot;checkbox&quot; value=&quot;&quot; id=&quot;flexCheckChecked&quot; checked&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;flexCheckChecked&quot;&gt;
Checked checkbox
&lt;/label&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="form-check py-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault" />
<label class="form-check-label" for="flexCheckDefault">
Default checkbox
</label>
</div>
<div class="form-check py-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckChecked" checked />
<label class="form-check-label" for="flexCheckChecked">
Checked checkbox
</label>
</div>
</div>
</div>
<!-- end Checks -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Checks - Disabled -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Checks - Disabled</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code3-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code3-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;form-check&quot;&gt;
&lt;input class=&quot;form-check-input&quot; type=&quot;checkbox&quot; value=&quot;&quot; id=&quot;flexCheckIndeterminate&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;flexCheckIndeterminate&quot;&gt;
Indeterminate checkbox
&lt;/label&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="form-check py-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDisabled" disabled />
<label class="form-check-label" for="flexCheckDisabled">
Disabled checkbox
</label>
</div>
<div class="form-check py-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckCheckedDisabled" checked disabled />
<label class="form-check-label" for="flexCheckCheckedDisabled">
Disabled checked checkbox
</label>
</div>
</div>
</div>
<!-- end Checks - Disabled -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Checks - Colors -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Checks - Colors</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code5-1-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code5-1-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Success&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success&quot; type=&quot;checkbox&quot; id=&quot;success-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success&quot; type=&quot;checkbox&quot; id=&quot;success2-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success2-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success&quot; type=&quot;checkbox&quot; id=&quot;success3-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success3-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Danger&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger&quot; type=&quot;checkbox&quot; id=&quot;danger-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger&quot; type=&quot;checkbox&quot; id=&quot;danger2-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger2-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger&quot; type=&quot;checkbox&quot; id=&quot;danger3-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger3-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Warning&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning&quot; type=&quot;checkbox&quot; id=&quot;warning-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning&quot; type=&quot;checkbox&quot; id=&quot;warning2-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning2-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning&quot; type=&quot;checkbox&quot; id=&quot;warning3-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning3-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Primary&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary&quot; type=&quot;checkbox&quot; id=&quot;primary-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary&quot; type=&quot;checkbox&quot; id=&quot;primary2-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary2-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary&quot; type=&quot;checkbox&quot; id=&quot;primary3-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary3-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Secondary&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary&quot; type=&quot;checkbox&quot; id=&quot;secondary-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary&quot; type=&quot;checkbox&quot; id=&quot;secondary2-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary2-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary&quot; type=&quot;checkbox&quot; id=&quot;secondary3-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary3-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Success</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input success" type="checkbox" id="success-check" value="option1" />
<label class="form-check-label" for="success-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success" type="checkbox" id="success2-check" value="option1" checked />
<label class="form-check-label" for="success2-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success" type="checkbox" id="success3-check" value="option1" disabled checked />
<label class="form-check-label" for="success3-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Danger</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input danger" type="checkbox" id="danger-check" value="option1" />
<label class="form-check-label" for="danger-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger" type="checkbox" id="danger2-check" value="option1" checked />
<label class="form-check-label" for="danger2-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger" type="checkbox" id="danger3-check" value="option1" disabled checked />
<label class="form-check-label" for="danger3-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Warning</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input warning" type="checkbox" id="warning-check" value="option1" />
<label class="form-check-label" for="warning-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning" type="checkbox" id="warning2-check" value="option1" checked />
<label class="form-check-label" for="warning2-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning" type="checkbox" id="warning3-check" value="option1" disabled checked />
<label class="form-check-label" for="warning3-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Primary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input primary" type="checkbox" id="primary-check" value="option1" />
<label class="form-check-label" for="primary-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary" type="checkbox" id="primary2-check" value="option1" checked />
<label class="form-check-label" for="primary2-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary" type="checkbox" id="primary3-check" value="option1" disabled checked />
<label class="form-check-label" for="primary3-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Secondary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input secondary" type="checkbox" id="secondary-check" value="option1" />
<label class="form-check-label" for="secondary-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary" type="checkbox" id="secondary2-check" value="option1" checked />
<label class="form-check-label" for="secondary2-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary" type="checkbox" id="secondary3-check" value="option1" disabled checked />
<label class="form-check-label" for="secondary3-check">Disabled</label>
</div>
</div>
</div>
</div>
</div>
<!-- end Checks - Colors -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Checks - Light Colors -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Checks - Light Colors</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code5-2-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code5-2-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Checks - Light Colors - View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Success&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-light-success&quot; type=&quot;checkbox&quot; id=&quot;success-light-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success-light-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success&quot; type=&quot;checkbox&quot; id=&quot;success2-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success2-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success&quot; type=&quot;checkbox&quot; id=&quot;success3-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success3-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Danger&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-light-danger&quot; type=&quot;checkbox&quot; id=&quot;danger-light-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger-light-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-light-danger&quot; type=&quot;checkbox&quot; id=&quot;danger2-light-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger2-light-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-light-danger&quot; type=&quot;checkbox&quot; id=&quot;danger3-light-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger3-light-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Warning&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-light-warning&quot; type=&quot;checkbox&quot; id=&quot;warning-light-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning-light-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-light-warning&quot; type=&quot;checkbox&quot; id=&quot;warning2-light-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning2-light-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-light-warning&quot; type=&quot;checkbox&quot; id=&quot;warning3-light-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning3-light-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Primary&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-light-primary&quot; type=&quot;checkbox&quot; id=&quot;primary-light-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary-light-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-light-primary&quot; type=&quot;checkbox&quot; id=&quot;primary2-light-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary2-light-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-light-primary&quot; type=&quot;checkbox&quot; id=&quot;primary3-light-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary3-light-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Secondary&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-light-secondary&quot; type=&quot;checkbox&quot; id=&quot;secondary-light-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary-light-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-light-secondary&quot; type=&quot;checkbox&quot; id=&quot;secondary2-light-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary2-light-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-light-secondary&quot; type=&quot;checkbox&quot; id=&quot;secondary3-light-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary3-light-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Success</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input success check-light-success" type="checkbox" id="success-light-check" value="option1" />
<label class="form-check-label" for="success-light-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success check-light-success" type="checkbox" id="success2-light-check" value="option1" checked />
<label class="form-check-label" for="success2-light-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success check-light-success" type="checkbox" id="success3-radio-check" value="option1" disabled checked />
<label class="form-check-label" for="success3-radio-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Danger</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input danger check-light-danger" type="checkbox" id="danger-light-check" value="option1" />
<label class="form-check-label" for="danger-light-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger check-light-danger" type="checkbox" id="danger2-light-check" value="option1" checked />
<label class="form-check-label" for="danger2-light-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger check-light-danger" type="checkbox" id="danger3-light-check" value="option1" disabled checked />
<label class="form-check-label" for="danger3-light-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Warning</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input warning check-light-warning" type="checkbox" id="warning-light-check" value="option1" />
<label class="form-check-label" for="warning-light-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning check-light-warning" type="checkbox" id="warning2-light-check" value="option1" checked />
<label class="form-check-label" for="warning2-light-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning check-light-warning" type="checkbox" id="warning3-light-check" value="option1" disabled checked />
<label class="form-check-label" for="warning3-light-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Primary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input primary check-light-primary" type="checkbox" id="primary-light-check" value="option1" />
<label class="form-check-label" for="primary-light-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary check-light-primary" type="checkbox" id="primary2-light-check" value="option1" checked />
<label class="form-check-label" for="primary2-light-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary check-light-primary" type="checkbox" id="primary3-light-check" value="option1" disabled checked />
<label class="form-check-label" for="primary3-light-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Secondary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-light-secondary" type="checkbox" id="secondary-light-check" value="option1" />
<label class="form-check-label" for="secondary-light-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-light-secondary" type="checkbox" id="secondary2-light-check" value="option1" checked />
<label class="form-check-label" for="secondary2-light-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-light-secondary" type="checkbox" id="secondary3-light-check" value="option1" disabled checked />
<label class="form-check-label" for="secondary3-light-check">Disabled</label>
</div>
</div>
</div>
</div>
</div>
<!-- end Checks - Light Colors -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Checks - Outline Border Colors -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">
Checks - Outline Border Colors
</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code5-3-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code5-3-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Checks - Outline Border Colors - View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Success Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-outline outline-success&quot; type=&quot;checkbox&quot; id=&quot;success-outline-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success-outline-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-outline outline-success&quot; type=&quot;checkbox&quot; id=&quot;success2-outline-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success2-outline-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-outline outline-success&quot; type=&quot;checkbox&quot; id=&quot;success3-outline--check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success3-outline--check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Danger Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-outline outline-danger&quot; type=&quot;checkbox&quot; id=&quot;danger-outline-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger-outline-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-outline outline-danger&quot; type=&quot;checkbox&quot; id=&quot;danger2-outline-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger2-outline-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-outline outline-danger&quot; type=&quot;checkbox&quot; id=&quot;danger3-outline-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger3-outline-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Warning Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-outline outline-warning&quot; type=&quot;checkbox&quot; id=&quot;warning-outline-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning-outline-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-outline outline-warning&quot; type=&quot;checkbox&quot; id=&quot;warning2-outline-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning2-outline-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-outline outline-warning&quot; type=&quot;checkbox&quot; id=&quot;warning3-outline-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning3-outline-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Primary Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-outline outline-primary&quot; type=&quot;checkbox&quot; id=&quot;primary-outline-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary-outline-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-outline outline-primary&quot; type=&quot;checkbox&quot; id=&quot;primary2-outline-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary2-outline-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-outline outline-primary&quot; type=&quot;checkbox&quot; id=&quot;primary3-outline-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary3-outline-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Secondary Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-outline outline-secondary&quot; type=&quot;checkbox&quot; id=&quot;secondary-outline-check&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary-outline-check&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-outline outline-secondary&quot; type=&quot;checkbox&quot; id=&quot;secondary2-outline-check&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary2-outline-check&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-outline outline-secondary&quot; type=&quot;checkbox&quot; id=&quot;secondary3-outline-check&quot; value=&quot;option1&quot; disabled=&quot;&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary3-outline-check&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Success</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input success check-outline outline-success" type="checkbox" id="success-outline-check" value="option1" />
<label class="form-check-label" for="success-outline-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success check-outline outline-success" type="checkbox" id="success2-outline-check" value="option1" checked />
<label class="form-check-label" for="success2-outline-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success check-outline outline-success" type="checkbox" id="success3-outline--check" value="option1" disabled checked />
<label class="form-check-label" for="success3-outline--check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Danger</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input danger check-outline outline-danger" type="checkbox" id="danger-outline-check" value="option1" />
<label class="form-check-label" for="danger-outline-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger check-outline outline-danger" type="checkbox" id="danger2-outline-check" value="option1" checked />
<label class="form-check-label" for="danger2-outline-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger check-outline outline-danger" type="checkbox" id="danger3-outline-check" value="option1" disabled checked />
<label class="form-check-label" for="danger3-outline-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Warning</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input warning check-outline outline-warning" type="checkbox" id="warning-outline-check" value="option1" />
<label class="form-check-label" for="warning-outline-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning check-outline outline-warning" type="checkbox" id="warning2-outline-check" value="option1" checked />
<label class="form-check-label" for="warning2-outline-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning check-outline outline-warning" type="checkbox" id="warning3-outline-check" value="option1" disabled checked />
<label class="form-check-label" for="warning3-outline-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Primary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input primary check-outline outline-primary" type="checkbox" id="primary-outline-check" value="option1" />
<label class="form-check-label" for="primary-outline-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary check-outline outline-primary" type="checkbox" id="primary2-outline-check" value="option1" checked />
<label class="form-check-label" for="primary2-outline-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary check-outline outline-primary" type="checkbox" id="primary3-outline-check" value="option1" disabled checked />
<label class="form-check-label" for="primary3-outline-check">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Secondary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-outline outline-secondary" type="checkbox" id="secondary-outline-check" value="option1" />
<label class="form-check-label" for="secondary-outline-check">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-outline outline-secondary" type="checkbox" id="secondary2-outline-check" value="option1" checked />
<label class="form-check-label" for="secondary2-outline-check">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-outline outline-secondary" type="checkbox" id="secondary3-outline-check" value="option1" disabled checked />
<label class="form-check-label" for="secondary3-outline-check">Disabled</label>
</div>
</div>
</div>
</div>
</div>
<!-- end Checks - Outline Border Colors -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Radios - Default -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Radios - Default</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code6-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code6-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Radios - Default- View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;form-check&quot;&gt;
&lt;input class=&quot;form-check-input&quot; type=&quot;radio&quot; name=&quot;exampleRadios&quot; id=&quot;exampleRadios1&quot; value=&quot;option1&quot; checked&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;exampleRadios1&quot;&gt;
Default radio
&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check&quot;&gt;
&lt;input class=&quot;form-check-input&quot; type=&quot;radio&quot; name=&quot;exampleRadios&quot; id=&quot;exampleRadios2&quot; value=&quot;option2&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;exampleRadios2&quot;&gt;
Second default radio
&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check&quot;&gt;
&lt;input class=&quot;form-check-input&quot; type=&quot;radio&quot; name=&quot;exampleRadios&quot; id=&quot;exampleRadios3&quot; value=&quot;option3&quot; disabled&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;exampleRadios3&quot;&gt;
Disabled radio
&lt;/label&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="form-check py-2">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios1" value="option1" checked />
<label class="form-check-label" for="exampleRadios1">
Default radio
</label>
</div>
<div class="form-check py-2">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios2" value="option2" />
<label class="form-check-label" for="exampleRadios2">
Second default radio
</label>
</div>
<div class="form-check py-2">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios3" value="option3" disabled />
<label class="form-check-label" for="exampleRadios3">
Disabled radio
</label>
</div>
</div>
</div>
<!-- end Radios - Default -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Radios - Disabled -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Radios - Disabled</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code8-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code8-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Radios - Disabled - View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;form-check&quot;&gt;
&lt;input class=&quot;form-check-input&quot; type=&quot;radio&quot; name=&quot;flexRadioDisabled&quot; id=&quot;flexRadioDisabled&quot; disabled&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;flexRadioDisabled&quot;&gt;
Disabled radio
&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check&quot;&gt;
&lt;input class=&quot;form-check-input&quot; type=&quot;radio&quot; name=&quot;flexRadioDisabled&quot; id=&quot;flexRadioCheckedDisabled&quot; checked disabled&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;flexRadioCheckedDisabled&quot;&gt;
Disabled checked radio
&lt;/label&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="form-check py-2">
<input class="form-check-input" type="radio" name="flexRadioDisabled" id="flexRadioDisabled" disabled />
<label class="form-check-label" for="flexRadioDisabled">
Disabled radio
</label>
</div>
<div class="form-check py-2">
<input class="form-check-input" type="radio" name="flexRadioDisabled" id="flexRadioCheckedDisabled" checked disabled />
<label class="form-check-label" for="flexRadioCheckedDisabled">
Disabled checked radio
</label>
</div>
</div>
</div>
<!-- end Radios - Disabled -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Radio - Colors -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Radio - Colors</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code9-1-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code9-1-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Radio - Colors - View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Success&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success&quot; type=&quot;radio&quot; name=&quot;radio-solid-success&quot; id=&quot;success-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success&quot; type=&quot;radio&quot; name=&quot;radio-solid-success&quot; id=&quot;success2-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success2-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success&quot; type=&quot;radio&quot; name=&quot;radio-solid-success&quot; id=&quot;success3-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success3-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Danger&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger&quot; type=&quot;radio&quot; name=&quot;radio-solid-danger&quot; id=&quot;danger-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger&quot; type=&quot;radio&quot; name=&quot;radio-solid-danger&quot; id=&quot;danger2-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger2-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger&quot; type=&quot;radio&quot; name=&quot;radio-solid-danger&quot; id=&quot;danger3-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot; &gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger3-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Warning&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning&quot; type=&quot;radio&quot; name=&quot;radio-solid-warning&quot; id=&quot;warning-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning&quot; type=&quot;radio&quot; name=&quot;radio-solid-warning&quot; id=&quot;warning2-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning2-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning&quot; type=&quot;radio&quot; name=&quot;radio-solid-warning&quot; id=&quot;warning3-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot; &gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning3-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Primary&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary&quot; type=&quot;radio&quot; name=&quot;radio-solid-primary&quot; id=&quot;primary-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary&quot; type=&quot;radio&quot; name=&quot;radio-solid-primary&quot; id=&quot;primary2-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary2-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary&quot; type=&quot;radio&quot; name=&quot;radio-solid-primary&quot; id=&quot;primary3-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot; &gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary3-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Secondary&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary&quot; type=&quot;radio&quot; name=&quot;radio-solid-secondary&quot; id=&quot;secondary-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary&quot; type=&quot;radio&quot; name=&quot;radio-solid-secondary&quot; id=&quot;secondary2-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary2-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary&quot; type=&quot;radio&quot; name=&quot;radio-solid-secondary&quot; id=&quot;secondary3-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot; &gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary3-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Success</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input success" type="radio" name="radio-solid-success" id="success-radio" value="option1" />
<label class="form-check-label" for="success-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success" type="radio" name="radio-solid-success" id="success2-radio" value="option1" checked />
<label class="form-check-label" for="success2-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success" type="radio" name="radio-solid-success" id="success3-radio" value="option1" disabled />
<label class="form-check-label" for="success3-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Danger</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input danger" type="radio" name="radio-solid-danger" id="danger-radio" value="option1" />
<label class="form-check-label" for="danger-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger" type="radio" name="radio-solid-danger" id="danger2-radio" value="option1" checked />
<label class="form-check-label" for="danger2-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger" type="radio" name="radio-solid-danger" id="danger3-radio" value="option1" disabled />
<label class="form-check-label" for="danger3-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Warning</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input warning" type="radio" name="radio-solid-warning" id="warning-radio" value="option1" />
<label class="form-check-label" for="warning-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning" type="radio" name="radio-solid-warning" id="warning2-radio" value="option1" checked />
<label class="form-check-label" for="warning2-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning" type="radio" name="radio-solid-warning" id="warning3-radio" value="option1" disabled />
<label class="form-check-label" for="warning3-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Primary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input primary" type="radio" name="radio-solid-primary" id="primary-radio" value="option1" />
<label class="form-check-label" for="primary-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary" type="radio" name="radio-solid-primary" id="primary2-radio" value="option1" checked />
<label class="form-check-label" for="primary2-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary" type="radio" name="radio-solid-primary" id="primary3-radio" value="option1" disabled />
<label class="form-check-label" for="primary3-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Secondary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input secondary" type="radio" name="radio-solid-secondary" id="secondary-radio" value="option1" />
<label class="form-check-label" for="secondary-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary" type="radio" name="radio-solid-secondary" id="secondary2-radio" value="option1" checked />
<label class="form-check-label" for="secondary2-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary" type="radio" name="radio-solid-secondary" id="secondary3-radio" value="option1" disabled />
<label class="form-check-label" for="secondary3-radio">Disabled</label>
</div>
</div>
</div>
</div>
</div>
<!-- end Radio - Colors -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Radios - Light Colors -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Radios - Light Colors</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code9-2-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code9-2-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Radios - Light Colors - View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Success&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-light-success&quot; type=&quot;radio&quot; name=&quot;radio-light-success&quot; id=&quot;success-light-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success-light-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-light-success&quot; type=&quot;radio&quot; name=&quot;radio-light-success&quot; id=&quot;success2-light-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success2-light-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-light-success&quot; type=&quot;radio&quot; name=&quot;radio-light-success&quot; id=&quot;success3-light-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success3-light-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Danger&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-light-danger&quot; type=&quot;radio&quot; name=&quot;radio-light-danger&quot; id=&quot;danger-light-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger-light-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-light-danger&quot; type=&quot;radio&quot; name=&quot;radio-light-danger&quot; id=&quot;danger2-light-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger2-light-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-light-danger&quot; type=&quot;radio&quot; name=&quot;radio-light-danger&quot; id=&quot;danger3-light-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger3-light-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Warning&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-light-warning&quot; type=&quot;radio&quot; name=&quot;radio-light-warning&quot; id=&quot;warning-light-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning-light-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-light-warning&quot; type=&quot;radio&quot; name=&quot;radio-light-warning&quot; id=&quot;warning2-light-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning2-light-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-light-warning&quot; type=&quot;radio&quot; name=&quot;radio-light-warning&quot; id=&quot;warning3-light-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning3-light-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Primary&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-light-primary&quot; type=&quot;radio&quot; name=&quot;radio-light-primary&quot; id=&quot;primary-light-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary-light-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-light-primary&quot; type=&quot;radio&quot; name=&quot;radio-light-primary&quot; id=&quot;primary2-light-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary2-light-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-light-primary&quot; type=&quot;radio&quot; name=&quot;radio-light-primary&quot; id=&quot;primary3-light-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary3-light-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Light Secondary&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-light-secondary&quot; type=&quot;radio&quot; name=&quot;radio-light-secondary&quot; id=&quot;secondary-light-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary-light-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-light-secondary&quot; type=&quot;radio&quot; name=&quot;radio-light-secondary&quot; id=&quot;secondary2-light-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary2-light-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-light-secondary&quot; type=&quot;radio&quot; name=&quot;radio-light-secondary&quot; id=&quot;secondary3-light-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary3-light-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Success</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input success check-light-success" type="radio" name="radio-light-success" id="success-light-radio" value="option1" />
<label class="form-check-label" for="success-light-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success check-light-success" type="radio" name="radio-light-success" id="success2-light-radio" value="option1" checked />
<label class="form-check-label" for="success2-light-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success check-light-success" type="radio" name="radio-light-success" id="success3-light-radio" value="option1" disabled />
<label class="form-check-label" for="success3-light-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Danger</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input danger check-light-danger" type="radio" name="radio-light-danger" id="danger-light-radio" value="option1" />
<label class="form-check-label" for="danger-light-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger check-light-danger" type="radio" name="radio-light-danger" id="danger2-light-radio" value="option1" checked />
<label class="form-check-label" for="danger2-light-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger check-light-danger" type="radio" name="radio-light-danger" id="danger3-light-radio" value="option1" disabled />
<label class="form-check-label" for="danger3-light-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Warning</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input warning check-light-warning" type="radio" name="radio-light-warning" id="warning-light-radio" value="option1" />
<label class="form-check-label" for="warning-light-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning check-light-warning" type="radio" name="radio-light-warning" id="warning2-light-radio" value="option1" checked />
<label class="form-check-label" for="warning2-light-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning check-light-warning" type="radio" name="radio-light-warning" id="warning3-light-radio" value="option1" disabled />
<label class="form-check-label" for="warning3-light-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Primary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input primary check-light-primary" type="radio" name="radio-light-primary" id="primary-light-radio" value="option1" />
<label class="form-check-label" for="primary-light-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary check-light-primary" type="radio" name="radio-light-primary" id="primary2-light-radio" value="option1" checked />
<label class="form-check-label" for="primary2-light-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary check-light-primary" type="radio" name="radio-light-primary" id="primary3-light-radio" value="option1" disabled />
<label class="form-check-label" for="primary3-light-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Secondary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-light-secondary" type="radio" name="radio-light-secondary" id="secondary-light-radio" value="option1" />
<label class="form-check-label" for="secondary-light-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-light-secondary" type="radio" name="radio-light-secondary" id="secondary2-light-radio" value="option1" checked />
<label class="form-check-label" for="secondary2-light-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-light-secondary" type="radio" name="radio-light-secondary" id="secondary3-light-radio" value="option1" disabled />
<label class="form-check-label" for="secondary3-light-radio">Disabled</label>
</div>
</div>
</div>
</div>
</div>
<!-- end Radios - Light Colors -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Radios - Outline Border Colors -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">
Radios - Outline Border Colors
</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code9-3-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code9-3-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Radios - Outline Border Colors - View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Success Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-outline outline-success&quot; type=&quot;radio&quot; id=&quot;success-outline-radio&quot; name=&quot;radio-success&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success-outline-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-outline outline-success&quot; type=&quot;radio&quot; id=&quot;success2-outline-radio&quot; name=&quot;radio-success&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success2-outline-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input success check-outline outline-success&quot; type=&quot;radio&quot; id=&quot;success3-outline-radio&quot; value=&quot;option1&quot; name=&quot;radio-success&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;success3-outline-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Danger Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-outline outline-danger&quot; type=&quot;radio&quot; id=&quot;danger-outline-radio&quot; name=&quot;radio-danger&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger-outline-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-outline outline-danger&quot; type=&quot;radio&quot; id=&quot;danger2-outline-radio&quot; name=&quot;radio-danger&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger2-outline-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input danger check-outline outline-danger&quot; type=&quot;radio&quot; id=&quot;danger3-outline-radio&quot; name=&quot;radio-danger&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;danger3-outline-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Warning Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-outline outline-warning&quot; type=&quot;radio&quot; name=&quot;radio-warning&quot; id=&quot;warning-outline-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning-outline-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-outline outline-warning&quot; type=&quot;radio&quot; name=&quot;radio-warning&quot; id=&quot;warning2-outline-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning2-outline-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input warning check-outline outline-warning&quot; type=&quot;radio&quot; name=&quot;radio-warning&quot; id=&quot;warning3-outline-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;warning3-outline-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Primary Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-outline outline-primary&quot; type=&quot;radio&quot; name=&quot;radio-primary&quot; id=&quot;primary-outline-radio&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary-outline-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-outline outline-primary&quot; type=&quot;radio&quot; name=&quot;radio-primary&quot; id=&quot;primary2-outline-radio&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary2-outline-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input primary check-outline outline-primary&quot; type=&quot;radio&quot; name=&quot;radio-primary&quot; id=&quot;primary3-outline-radio&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;primary3-outline-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;row py-2&quot;&gt;
&lt;div class=&quot;col-md-4&quot;&gt;
&lt;label&gt;Secondary Border&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;col-md-8&quot;&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-outline outline-secondary&quot; type=&quot;radio&quot; id=&quot;secondary-outline-radio&quot; name=&quot;radio-secondary&quot; value=&quot;option1&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary-outline-radio&quot;&gt;Default&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-outline outline-secondary&quot; type=&quot;radio&quot; id=&quot;secondary2-outline-radio&quot; name=&quot;radio-secondary&quot; value=&quot;option1&quot; checked=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary2-outline-radio&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div class=&quot;form-check form-check-inline&quot;&gt;
&lt;input class=&quot;form-check-input secondary check-outline outline-secondary&quot; type=&quot;radio&quot; id=&quot;secondary3-outline-radio&quot; name=&quot;radio-secondary&quot; value=&quot;option1&quot; disabled=&quot;&quot;&gt;
&lt;label class=&quot;form-check-label&quot; for=&quot;secondary3-outline-radio&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Success</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input success check-outline outline-success" type="radio" id="success-outline-radio" name="radio-success" value="option1" />
<label class="form-check-label" for="success-outline-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success check-outline outline-success" type="radio" id="success2-outline-radio" name="radio-success" value="option1" checked />
<label class="form-check-label" for="success2-outline-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input success check-outline outline-success" type="radio" id="success3-outline-radio" value="option1" name="radio-success" disabled />
<label class="form-check-label" for="success3-outline-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Danger</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input danger check-outline outline-danger" type="radio" id="danger-outline-radio" name="radio-danger" value="option1" />
<label class="form-check-label" for="danger-outline-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger check-outline outline-danger" type="radio" id="danger2-outline-radio" name="radio-danger" value="option1" checked />
<label class="form-check-label" for="danger2-outline-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input danger check-outline outline-danger" type="radio" id="danger3-outline-radio" name="radio-danger" value="option1" disabled />
<label class="form-check-label" for="danger3-outline-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Warning</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input warning check-outline outline-warning" type="radio" name="radio-warning" id="warning-outline-radio" value="option1" />
<label class="form-check-label" for="warning-outline-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning check-outline outline-warning" type="radio" name="radio-warning" id="warning2-outline-radio" value="option1" checked />
<label class="form-check-label" for="warning2-outline-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input warning check-outline outline-warning" type="radio" name="radio-warning" id="warning3-outline-radio" value="option1" disabled />
<label class="form-check-label" for="warning3-outline-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Primary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input primary check-outline outline-primary" type="radio" name="radio-primary" id="primary-outline-radio" value="option1" />
<label class="form-check-label" for="primary-outline-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary check-outline outline-primary" type="radio" name="radio-primary" id="primary2-outline-radio" value="option1" checked />
<label class="form-check-label" for="primary2-outline-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input primary check-outline outline-primary" type="radio" name="radio-primary" id="primary3-outline-radio" value="option1" disabled />
<label class="form-check-label" for="primary3-outline-radio">Disabled</label>
</div>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 col-xl-3">
<span class="fs-3 text-muted">Secondary</span>
</div>
<div class="col-md-8 col-xl-9">
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-outline outline-secondary" type="radio" id="secondary-outline-radio" name="radio-secondary" value="option1" />
<label class="form-check-label" for="secondary-outline-radio">Default</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-outline outline-secondary" type="radio" id="secondary2-outline-radio" name="radio-secondary" value="option1" checked />
<label class="form-check-label" for="secondary2-outline-radio">Checked</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input secondary check-outline outline-secondary" type="radio" id="secondary3-outline-radio" name="radio-secondary" value="option1" disabled />
<label class="form-check-label" for="secondary3-outline-radio">Disabled</label>
</div>
</div>
</div>
</div>
</div>
<!-- end Radios - Outline Border Colors -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Toggle buttons -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Toggle buttons</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code10-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code10-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Toggle buttons - View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;d-md-flex gap-2&quot;&gt;
&lt;div&gt;
&lt;input type=&quot;checkbox&quot; class=&quot;btn-check&quot; id=&quot;btn-check&quot; autocomplete=&quot;off&quot;&gt;
&lt;label class=&quot;btn btn-outline-primary &quot; for=&quot;btn-check&quot;&gt;Single toggle&lt;/label&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;input type=&quot;checkbox&quot; class=&quot;btn-check&quot; id=&quot;btn-check-2&quot; checked autocomplete=&quot;off&quot;&gt;
&lt;label class=&quot;btn btn-outline-info &quot; for=&quot;btn-check-2&quot;&gt;Checked&lt;/label&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;input type=&quot;checkbox&quot; class=&quot;btn-check&quot; id=&quot;btn-check-3&quot; autocomplete=&quot;off&quot; disabled&gt;
&lt;label class=&quot;btn btn-outline-danger &quot; for=&quot;btn-check-3&quot;&gt;Disabled&lt;/label&gt;
&lt;/div&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="d-flex flex-wrap gap-6">
<div>
<input type="checkbox" class="btn-check" id="btn-check" autocomplete="off" />
<label class="btn btn-outline-primary " for="btn-check">Single
toggle</label>
</div>
<div>
<input type="checkbox" class="btn-check" id="btn-check-2" checked autocomplete="off" />
<label class="btn btn-outline-info " for="btn-check-2">Checked</label>
</div>
<div>
<input type="checkbox" class="btn-check" id="btn-check-3" autocomplete="off" disabled />
<label class="btn btn-outline-danger " for="btn-check-3">Disabled</label>
</div>
</div>
</div>
</div>
<!-- end Toggle buttons -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Radio toggle buttons-->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Radio toggle buttons</h5>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code11-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code11-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Radio toggle buttons - View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;input type=&quot;radio&quot; class=&quot;btn-check&quot; name=&quot;options&quot; id=&quot;option1&quot; autocomplete=&quot;off&quot; checked&gt;
&lt;label class=&quot;btn btn-outline-primary &quot; for=&quot;option1&quot;&gt;Checked&lt;/label&gt;
&lt;input type=&quot;radio&quot; class=&quot;btn-check&quot; name=&quot;options&quot; id=&quot;option2&quot; autocomplete=&quot;off&quot;&gt;
&lt;label class=&quot;btn btn-outline-warning &quot; for=&quot;option2&quot;&gt;Radio&lt;/label&gt;
&lt;input type=&quot;radio&quot; class=&quot;btn-check&quot; name=&quot;options&quot; id=&quot;option3&quot; autocomplete=&quot;off&quot; disabled&gt;
&lt;label class=&quot;btn btn-outline-info &quot; for=&quot;option3&quot;&gt;Disabled&lt;/label&gt;
&lt;input type=&quot;radio&quot; class=&quot;btn-check&quot; name=&quot;options&quot; id=&quot;option4&quot; autocomplete=&quot;off&quot;&gt;
&lt;label class=&quot;btn btn-outline-danger &quot; for=&quot;option4&quot;&gt;Radio&lt;/label&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div class="d-flex flex-wrap gap-6">
<input type="radio" class="btn-check" name="options" id="option1" autocomplete="off" checked />
<label class="btn btn-outline-primary " for="option1">Checked</label>
<input type="radio" class="btn-check" name="options" id="option2" autocomplete="off" />
<label class="btn btn-outline-warning " for="option2">Radio</label>
<input type="radio" class="btn-check" name="options" id="option3" autocomplete="off" disabled />
<label class="btn btn-outline-info " for="option3">Disabled</label>
<input type="radio" class="btn-check" name="options" id="option4" autocomplete="off" />
<label class="btn btn-outline-danger " for="option4">Radio</label>
</div>
</div>
</div>
<!-- end Radio toggle buttons -->
</div>
<div class="col-lg-6 d-flex align-items-stretch">
<!-- start Outlined styles -->
<div class="card w-100">
<div class="card-body">
<div class="d-flex mb-3 align-items-center">
<h4 class="card-title mb-0">Outlined styles</h4>
<div class="ms-auto flex-shrink-0">
<button class="btn bg-primary-subtle text-primary text-decoration-none btn-sm" title="View Code" data-bs-toggle="modal" data-bs-target="#view-code12-modal">
<i class="ti ti-code fs-5 d-flex"></i>
</button>
<!-- Code Modal -->
<div id="view-code12-modal" class="modal fade" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header border-bottom">
<h5 class="modal-title" id="exampleModalLabel">
Outlined styles - View Code
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-4">
<pre class="language-html scrollable">
<code>
&lt;div class=&quot;d-inline-block&quot;&gt;
&lt;input type=&quot;checkbox&quot; class=&quot;btn-check&quot; id=&quot;btn-check-outlined&quot; autocomplete=&quot;off&quot;&gt;
&lt;label class=&quot;btn btn-outline-primary mb-2 &quot; for=&quot;btn-check-outlined&quot;&gt;Single toggle&lt;/label&gt;&lt;br&gt;
&lt;input type=&quot;checkbox&quot; class=&quot;btn-check&quot; id=&quot;btn-check-2-outlined&quot; checked autocomplete=&quot;off&quot;&gt;
&lt;label class=&quot;btn btn-outline-success mb-2 &quot; for=&quot;btn-check-2-outlined&quot;&gt;Checked&lt;/label&gt;&lt;br&gt;
&lt;input type=&quot;radio&quot; class=&quot;btn-check&quot; name=&quot;options-outlined&quot; id=&quot;success-outlined&quot; autocomplete=&quot;off&quot; checked&gt;
&lt;label class=&quot;btn btn-outline-info mb-2 &quot; for=&quot;success-outlined&quot;&gt;Checked success radio&lt;/label&gt;
&lt;input type=&quot;radio&quot; class=&quot;btn-check&quot; name=&quot;options-outlined&quot; id=&quot;danger-outlined&quot; autocomplete=&quot;off&quot;&gt;
&lt;label class=&quot;btn btn-outline-danger mb-2 &quot; for=&quot;danger-outlined&quot;&gt;Danger radio&lt;/label&gt;
&lt;/div&gt;
</code>
</pre>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
</div>
<div>
<input type="checkbox" class="btn-check" id="btn-check-outlined" autocomplete="off" />
<label class="btn btn-outline-primary mb-6 " for="btn-check-outlined">Single
toggle</label>
<br />
<input type="checkbox" class="btn-check" id="btn-check-2-outlined" checked autocomplete="off" />
<label class="btn btn-outline-success mb-6 " for="btn-check-2-outlined">Checked</label>
<br />
<input type="radio" class="btn-check" name="options-outlined" id="success-outlined" autocomplete="off" checked />
<label class="btn btn-outline-info mb-6 " for="success-outlined">Checked
success radio</label>
<input type="radio" class="btn-check" name="options-outlined" id="danger-outlined" autocomplete="off" />
<label class="btn btn-outline-danger mb-6 " for="danger-outlined">Danger
radio</label>
</div>
</div>
</div>
<!-- end Outlined styles -->
</div>
</div>
</div>
</div>
</div>
<!-- Search Bar -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg">
<div class="modal-content rounded-1">
<div class="modal-header border-bottom">
<input type="search" class="form-control fs-3" placeholder="Search here" id="search" />
<a href="javascript:void(0)" data-bs-dismiss="modal" class="lh-1">
<i class="ti ti-x fs-5 ms-3"></i>
</a>
</div>
<div class="modal-body message-body" data-simplebar="">
<h5 class="mb-0 fs-5 p-1">Quick Page Links</h5>
<ul class="list mb-0 py-2">
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Modern</span>
<span class="text-muted d-block">/dashboards/dashboard1</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Dashboard</span>
<span class="text-muted d-block">/dashboards/dashboard2</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Contacts</span>
<span class="text-muted d-block">/apps/contacts</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Posts</span>
<span class="text-muted d-block">/apps/blog/posts</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Detail</span>
<span class="text-muted d-block">/apps/blog/detail/streaming-video-way-before-it-was-cool-go-dark-tomorrow</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Shop</span>
<span class="text-muted d-block">/apps/ecommerce/shop</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Modern</span>
<span class="text-muted d-block">/dashboards/dashboard1</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Dashboard</span>
<span class="text-muted d-block">/dashboards/dashboard2</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Contacts</span>
<span class="text-muted d-block">/apps/contacts</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Posts</span>
<span class="text-muted d-block">/apps/blog/posts</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Detail</span>
<span class="text-muted d-block">/apps/blog/detail/streaming-video-way-before-it-was-cool-go-dark-tomorrow</span>
</a>
</li>
<li class="p-1 mb-1 bg-hover-light-black">
<a href="javascript:void(0)">
<span class="d-block">Shop</span>
<span class="text-muted d-block">/apps/ecommerce/shop</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Shopping Cart -->
<div class="offcanvas offcanvas-end shopping-cart" tabindex="-1" id="offcanvasRight" aria-labelledby="offcanvasRightLabel">
<div class="offcanvas-header justify-content-between py-4">
<h5 class="offcanvas-title fs-5 fw-semibold" id="offcanvasRightLabel">
Shopping Cart
</h5>
<span class="badge bg-primary rounded-4 px-3 py-1 lh-sm">5 new</span>
</div>
<div class="offcanvas-body h-100 px-4 pt-0" data-simplebar>
<ul class="mb-0">
<li class="pb-7">
<div class="d-flex align-items-center">
<img src="../assets/images/products/product-1.jpg" width="95" height="75" class="rounded-1 me-9 flex-shrink-0" alt="modernize-img" />
<div>
<h6 class="mb-1">Supreme toys cooker</h6>
<p class="mb-0 text-muted fs-2">Kitchenware Item</p>
<div class="d-flex align-items-center justify-content-between mt-2">
<h6 class="fs-2 fw-semibold mb-0 text-muted">$250</h6>
<div class="input-group input-group-sm w-50">
<button class="btn border-0 round-20 minus p-0 bg-success-subtle text-success" type="button" id="add1">
-
</button>
<input type="text" class="form-control round-20 bg-transparent text-muted fs-2 border-0 text-center qty" placeholder="" aria-label="Example text with button addon" aria-describedby="add1" value="1" />
<button class="btn text-success bg-success-subtle p-0 round-20 border-0 add" type="button" id="addo2">
+
</button>
</div>
</div>
</div>
</div>
</li>
<li class="pb-7">
<div class="d-flex align-items-center">
<img src="../assets/images/products/product-2.jpg" width="95" height="75" class="rounded-1 me-9 flex-shrink-0" alt="modernize-img" />
<div>
<h6 class="mb-1">Supreme toys cooker</h6>
<p class="mb-0 text-muted fs-2">Kitchenware Item</p>
<div class="d-flex align-items-center justify-content-between mt-2">
<h6 class="fs-2 fw-semibold mb-0 text-muted">$250</h6>
<div class="input-group input-group-sm w-50">
<button class="btn border-0 round-20 minus p-0 bg-success-subtle text-success" type="button" id="add2">
-
</button>
<input type="text" class="form-control round-20 bg-transparent text-muted fs-2 border-0 text-center qty" placeholder="" aria-label="Example text with button addon" aria-describedby="add2" value="1" />
<button class="btn text-success bg-success-subtle p-0 round-20 border-0 add" type="button" id="addon34">
+
</button>
</div>
</div>
</div>
</div>
</li>
<li class="pb-7">
<div class="d-flex align-items-center">
<img src="../assets/images/products/product-3.jpg" width="95" height="75" class="rounded-1 me-9 flex-shrink-0" alt="modernize-img" />
<div>
<h6 class="mb-1">Supreme toys cooker</h6>
<p class="mb-0 text-muted fs-2">Kitchenware Item</p>
<div class="d-flex align-items-center justify-content-between mt-2">
<h6 class="fs-2 fw-semibold mb-0 text-muted">$250</h6>
<div class="input-group input-group-sm w-50">
<button class="btn border-0 round-20 minus p-0 bg-success-subtle text-success" type="button" id="add3">
-
</button>
<input type="text" class="form-control round-20 bg-transparent text-muted fs-2 border-0 text-center qty" placeholder="" aria-label="Example text with button addon" aria-describedby="add3" value="1" />
<button class="btn text-success bg-success-subtle p-0 round-20 border-0 add" type="button" id="addon3">
+
</button>
</div>
</div>
</div>
</div>
</li>
</ul>
<div class="align-bottom">
<div class="d-flex align-items-center pb-7">
<span class="text-dark fs-3">Sub Total</span>
<div class="ms-auto">
<span class="text-dark fw-semibold fs-3">$2530</span>
</div>
</div>
<div class="d-flex align-items-center pb-7">
<span class="text-dark fs-3">Total</span>
<div class="ms-auto">
<span class="text-dark fw-semibold fs-3">$6830</span>
</div>
</div>
<a href="../main/eco-checkout.html" class="btn btn-outline-primary w-100">Go to shopping cart</a>
</div>
</div>
</div>
</div>
{{template "components/footer.html" .}}