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

11 lines
365 B
Handlebars
Raw Normal View History

2020-08-01 00:09:34 +02:00
<div class="LP-Input LP-Input{{modifier}}">
<label for="input123" class="LP-Input__Label">{{label}}</label>
2020-08-21 12:08:51 +02:00
<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}}
2020-07-31 16:54:35 +02:00
</div>