Lay-out improvements

This commit is contained in:
Abel
2021-12-31 16:26:44 +01:00
parent fc07accb49
commit c7bc29beee
3 changed files with 56 additions and 12 deletions

View File

@@ -5,20 +5,24 @@
<form action="" method="post" role="form">
{{ form.csrf }}
<div class="form-group">
<div class="entry-group">
<label for="name">Postcode:</label>
<input type="text" class="form-control" id="postcode" name="postalcode" placeholder="Wat is je postcode?">
<label for="houseno">Huisnummer:</label>
<input type="text" class="form-control" id="houseno" name="houseno" placeholder="Wat is je huisnummer?">
<label for="houseno_ext">Toevoeging:</label>
<input type="text" class="form-control" id="houseno_ext" name="houseno_ext" placeholder="een huisnummer toevoeging?">
<div class="input-submit">
<input type="submit" value="Zoek">
</div>
</div>
<div class="entry-group">
<label for="houseno">Huisnummer:</label>
<input type="text" class="form-control" id="houseno" name="houseno" placeholder="Wat is je huisnummer?">
</div>
<div class="entry-group">
<label for="houseno_ext">Toevoeging:</label>
<input type="text" class="form-control" id="houseno_ext" name="houseno_ext" placeholder="een huisnummer toevoeging?">
</div>
<div class="input-submit">
<input type="submit" class="btn-search" value="Zoek">
</div>
</form>
<div class="messages">
@@ -33,6 +37,7 @@
{% endif %}
{% endwith %}
</div>
<div class="results">
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
@@ -52,6 +57,7 @@
{% endif %}
{% endwith %}
</div>
</div>
</div>
</div>
{% endblock %}