mirror of
https://github.com/tabler/tabler.git
synced 2025-12-26 11:16:12 +04:00
tabler v1
This commit is contained in:
13
pages/_includes/forms/input-group.html
Normal file
13
pages/_includes/forms/input-group.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<div class="input-group{% if include.class %} {{ include.class }}{% endif %}">
|
||||
{% if include.prepend %}
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">{{ include.prepend }}</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
<input type="text" class="form-control"{% if include.placeholder %} placeholder="{{ include.placeholder }}"{% endif %}{% if include.placeholder %} value="{{ include.value }}"{% endif %}>
|
||||
{% if include.append %}
|
||||
<div class="input-group-append">
|
||||
<span class="input-group-text">{{ include.append }}</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
Reference in New Issue
Block a user