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