minimal working
This commit is contained in:
3
app/templates/includes/footer.html
Normal file
3
app/templates/includes/footer.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<footer>
|
||||
<hr>
|
||||
</footer>
|
18
app/templates/includes/form.html
Normal file
18
app/templates/includes/form.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<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>
|
4
app/templates/includes/header.html
Normal file
4
app/templates/includes/header.html
Normal file
@@ -0,0 +1,4 @@
|
||||
<header>
|
||||
<h1>Dekonferencija v1.0</h1>
|
||||
<hr>
|
||||
</header>
|
Reference in New Issue
Block a user