1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-31 23:44:38 +04:00
Files
tabler/pages/_includes/parts/input-toggle.html
T
2019-03-12 22:09:23 +01:00

21 lines
815 B
HTML

<div class="form-group">
<div class="form-label">Toggle switches</div>
<div class="custom-switches-stacked">
<label class="custom-switch">
<input type="radio" name="option" value="1" class="custom-switch-input" checked>
<span class="custom-switch-indicator"></span>
<span class="custom-switch-description">Option 1</span>
</label>
<label class="custom-switch">
<input type="radio" name="option" value="2" class="custom-switch-input">
<span class="custom-switch-indicator"></span>
<span class="custom-switch-description">Option 2</span>
</label>
<label class="custom-switch">
<input type="radio" name="option" value="3" class="custom-switch-input">
<span class="custom-switch-indicator"></span>
<span class="custom-switch-description">Option 3</span>
</label>
</div>
</div>