1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-27 10:10:27 +04:00
Files
tabler/pages/_includes/parts/select.html
2019-09-25 20:55:11 +02:00

9 lines
302 B
HTML

<div class="mb-3">
<div class="form-label">{{ include.label | default: 'Select' }}</div>
<select class="form-select"{% if include.multiple %} multiple{% endif %}>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>