1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-24 02:38:15 +04:00
Files
tabler/shared/includes/parts/form/input-selectgroups.html
2025-04-15 23:18:49 +02:00

20 lines
757 B
HTML

<div class="mb-3">
<label class="form-label">Simple selectgroup</label>
{% include "ui/form/input-selectgroup.html" values="HTML,CSS,PHP,JavaScript" %}
</div>
<div class="mb-3">
<label class="form-label">Icon input</label>
{% include "ui/form/input-selectgroup.html" values="i:sun,i:moon,i:cloud-rain,i:cloud,Other" %}
</div>
<div class="mb-3">
<label class="form-label">Selectgroup with icons and text</label>
{% include "ui/form/input-selectgroup.html" values="i:home,i:user,i:circle,i:square" type="radio" name="icons" with-text=true %}
</div>
<div class="mb-3">
<label class="form-label">Different style</label>
{% include "ui/form/input-selectgroup.html" values="HTML,CSS,PHP,JavaScript" class="form-selectgroup-pills" %}
</div>