<label for="type-password-1">
Input type password
</label>
<input type="password" id="type-password-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 password",
"id": "type-password-1",
"type": "password"
}
An <input> element with support for most text and number related types (supported examples are rendered above). Related MDN article.