HTML file:
<div class="container h-100">
<div class="row h-100">
<div class="col">
<h1>{{ auction.name }}</h1>
</div>
<div class="col">
<form method="POST" action="{% url 'bid' auction.id %}">
{% csrf_token %}
<input name="bid" type="number" required><br>
<input type="submit" value="Make a bid!">
</form>
<a class="btn btn-warning" href="{% url 'close' %}">Close auction</a>
</div>
</div>
</div>
I would like to put the <a class="btn btn-warning" href="{% url 'close' %}">Close auction</a>
in the bottom of the <div class="col">
and in the center horizontally, how can I do? Thank you!