Hey there, I'm encountering an issue with the placement of my button on my website
<form id="filter_view" method="POST"> {% csrf_token %}
<div class="form-row">
<div class="form-group col-md-1">
<label for="select_id">option</label>
<select id="select_id" class="form-control">
<option selected>Choose...</option>
<option>...</option>
</select>
</div>
<div class="form-group col-md-1">
<label for="inputZip">write</label>
<input type="text" class="form-control" id="inputZip">
<button type="submit" class="btn btn-secondary align-bottom">submit</button>
</div>
</div>
</form>
This results in a site layout similar to this: View Website
I aim to have the submit button aligned within the row of my input box. Any suggestions?