Input

<!-- Default -->
<input type="text" value="" id=input01 placeholder=Placeholder class="input-text is-default" />
<!-- Input 05 -->
<input type="text" value="" id=input05 placeholder=Error class="input-text is-error" />
<!-- Input 07 -->
<input type="text" value="" id=input07 placeholder=Disabled class="input-text is-disabled" disabled />
<input type="text" value="{{value}}" id={{id}} placeholder={{placeholder}} class="input-text is-{{modifier}}" {{#if disabled}}disabled{{/if}}/>
/* Default */
{
  "value": "",
  "id": "input01",
  "name": "input01",
  "placeholder": "Placeholder",
  "modifier": "default"
}
/* Input 05 */
{
  "value": "",
  "id": "input05",
  "name": "input01",
  "placeholder": "Error",
  "modifier": "error"
}
/* Input 07 */
{
  "value": "",
  "id": "input07",
  "name": "input01",
  "placeholder": "Disabled",
  "modifier": "disabled",
  "disabled": true
}

There are no notes for this item.