15 lines
574 B
HTML
15 lines
574 B
HTML
---
|
|
data:
|
|
type: hash
|
|
locale:
|
|
type: string
|
|
i18n:
|
|
type: hash
|
|
---
|
|
{% render 'forms/text.html', id: 'minimoIndispensable', maxlength: '10' %}
|
|
{% render 'forms/text.html', id: 'conName', maxlength: '10', name: true %}
|
|
{% render 'forms/text.html', id: 'conPlaceholder', maxlength: '10', placeholder: 'Placeholder' %}
|
|
{% render 'forms/text.html', id: 'conAutofocus', maxlength: '10', autofocus: true %}
|
|
{% render 'forms/text.html', id: 'conRequired', maxlength: '10', required: true %}
|
|
{% render 'forms/text.html', id: 'conMinYMaxlength', minlength: '10', maxlength: '15' %}
|