2022-07-05 13:41:31 -04:00
|
|
|
{{#if this.isCheckbox}}
|
|
|
|
<label for={{this.inputId}}>
|
|
|
|
<Input @checked={{this.checked}} @id={{this.inputId}} @type="checkbox" />
|
|
|
|
{{i18n this.translationKey}}
|
2015-08-20 13:43:12 -04:00
|
|
|
</label>
|
|
|
|
{{else}}
|
2022-07-05 13:41:31 -04:00
|
|
|
<label for={{this.inputId}}>{{i18n this.translationKey}}</label>
|
|
|
|
<Input @value={{this.value}} @id={{this.inputId}} placeholder={{this.placeholder}} />
|
2015-08-20 13:43:12 -04:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|