<label for="type-text-1">
    Input type text

</label>
<input type="text" id="type-text-1" value="">
<label
  for="{{id}}"
  {{#if at-label}}class="at-only"{{/if}}
>
  {{label}}
  {{#if help-msg}}<em>{{help-msg}}</em>{{/if}}
</label>
<input
  type="{{#if type}}{{type}}{{else}}text{{/if}}"
  id="{{id}}"
  value="{{value}}"
  {{#if input-classes}}
  class="{{input-classes}}"
  {{/if}}
  {{#if disabled}}
  disabled
  {{/if}}
>
{
  "label": "Input type text",
  "id": "type-text-1"
}

Input

An <input> element with support for most text and number related types (supported examples are rendered above). Related MDN article.