lostplaces-frontend/components/01_Atoms/input/input.hbs

10 lines
358 B
Handlebars

<div class="LP-Input LP-Input{{modifier}}">
<label for="input123" class="LP-Input__Label">{{label}}</label>
<input type="text" id="input123" class="LP-Input__Field" placeholder="{{placeholder}}">
{{#if disabled}}
disabled="disabled"
{{/if}}
{{#if message}}
<span class="LP-Input__Message">{{message}}</span>
{{/if}}
</div>