<div class="a-input a-input--text a-input--error">
<div class="a-input__label">
Label
</div>
<input type="text" value="" placeholder="Label Placeholder">
<span class="a-input__alert">
Il campo contiene dei caratteri non consentiti.*
</span>
</div>
<div class="a-input a-input--text a-input--error">
<div class="a-input__label">
{{ text.label }}
</div>
<input type="text"
value="{{ text.value }}"
{% if text.placeholder %}placeholder="{{ text.placeholder }}"{% endif %}
{% if text.disabled == true %}disabled{% endif %}
>
<span class="a-input__alert">
Il campo contiene dei caratteri non consentiti.*
</span>
</div>
{
"text": {
"label": "Label",
"value": null,
"placeholder": "Label Placeholder",
"disabled": null
},
"textDisabled": {
"label": "Label",
"value": "25.991,80 €",
"disabled": true
},
"select": {
"label": "Label",
"values": [
"IVA 22% vendite",
"IVA 10% vendite"
],
"disabled": null
}
}
There are no notes for this item.