mirror of
https://github.com/tabler/tabler.git
synced 2025-12-25 11:29:57 +04:00
37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
{% include parts/input-image.html %}
|
|
{% include parts/input-color.html %}
|
|
{% include parts/input-colorpicker.html %}
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
<label class="form-label">Valid State</label>
|
|
<input type="text" class="form-control is-valid" name="example-text-input-valid"
|
|
placeholder="Valid State..">
|
|
|
|
<input type="text" class="form-control mt-3 state-valid" value="Valid state">
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label class="form-label">Invalid State</label>
|
|
<input type="text" class="form-control is-invalid" name="example-text-input-invalid"
|
|
placeholder="Invalid State..">
|
|
<div class="invalid-feedback">Invalid feedback</div>
|
|
|
|
<input type="text" class="form-control mt-3 state-invalid" value="Invalid state">
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label class="form-label">Country</label>
|
|
<select class="form-select">
|
|
<option value="">Germany</option>
|
|
</select>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">Size</label>
|
|
{% include ui/input-selectgroup.html values="S,M,L,XL,XXL" type="radio" name="size" %}
|
|
</div>
|
|
|
|
|
|
|