<div class="o-form__field">
<div class="o-form__fluid">
<input title="" type="text" class="o-form__input o-form__input--text " placeholder="Bitte ausfüllen" aria-describedby="input-01" required>
<label class="o-form__label">Ihr Name<span class="required">*</span></label>
</div>
<span class="o-form__status o-form__status--warning">
</span>
<span class="o-form__info" id="input-01"></span>
</div>
<div class="o-form__field">
<div class="o-form__fluid">
<input title="{{ title }}" type="{{ type }}"
class="o-form__input o-form__input--{{ type }} {{ class }}"
placeholder="{{ placeholder }}"
{% if Id %} aria-describedby="{{ Id }}"{% endif %}
{% if pattern %} pattern="{{ pattern }}"{% endif %}
{% if required %} required{% endif %}>
{% if label %}
<label class="o-form__label">{{ label }}{% if required %}<span class="required">*</span>{% endif %}</label>
{% endif %}
</div>
{% if required %}
<span class="o-form__status o-form__status--warning">
{{ errortext }}
</span>
{% endif %}
{% if Id %}
<span class="o-form__info" id="{{ Id }}">{{ description }}</span>
{% endif %}
</div>
{
"label": "Ihr Name",
"type": "text",
"placeholder": "Bitte ausfüllen",
"Id": "input-01",
"pattern": false,
"required": true,
"errortext": "",
"description": "",
"title": ""
}
There are no notes for this item.