deconforma/app/templates/includes/form.html

19 lines
619 B
HTML

<form method="POST" action="/process-form">
<div class="form-choice">
<label for="attendence">Prisutnost (Attendence)</label>
<div class="form-checkbox">
<input type="radio" name="attendence" id="attendence" value="yes">
<p>Dolazim (I'll be there)</p>
</div>
<div class="form-checkbox">
<input type="radio" name="attendence" id="attendence" value="no">
<p>Ne dolazim (Won't be there)</p>
</div>
</div>
<div class="form-textarea">
<label for="comment">Pitanje ili komentar (Question or comment)</label>
<textarea name="comment"></textarea>
</div>
<button>Posalji (Submit)</button>
</form>