lostplaces-frontend/components/02_Molecules/form/form.hbs
2020-07-31 13:14:45 +02:00

14 lines
554 B
Handlebars

<form class="LP-Form">
<fieldset class="LP-Form__Fieldset">
<legend class="LP-Form__Legend">Basic data</legend>
<div class="LP-Form__Row">
<span class="LP-Form__Field">
<label for="textinput123" class="LP-Input__Label">Enter your text here</label>
<input id="textinput123" type="text" class="LP-Input__Text"/>
<span class="LP-Input__ErrorMessage">
<p>Text is required</p>
</span>
</span>
</div>
</fieldset>
</form>