<div class="o-form__field">
<div class="o-form__fluid">
<input title="" type="email" class="o-form__input o-form__input--email " placeholder="Ihre E-Mail-Adresse" aria-describedby="input-03" pattern="email" required>
<label class="o-form__label">Input type: email<span class="required">*</span></label>
</div>
<span class="o-form__status o-form__status--warning">
Dieses Feld muss ausgefüllt werden.
</span>
<span class="o-form__info" id="input-03"></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": "Input type: email",
"type": "email",
"placeholder": "Ihre E-Mail-Adresse",
"Id": "input-03",
"pattern": "email",
"required": true,
"errortext": "Dieses Feld muss ausgefüllt werden.",
"description": "",
"title": ""
}
There are no notes for this item.