Make form submit full width fixed

This commit is contained in:
Christopher C. Wells 2021-07-13 20:57:04 -07:00 committed by Christopher Charbonneau Wells
parent 798d7663fd
commit f4134cd226
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{% load i18n widget_tweaks %}
<div class="container-fluid">
<div class="container-fluid pb-5">
<form role="form" method="post" enctype="multipart/form-data">
{% csrf_token %}
{% for field in form %}
@ -8,6 +8,6 @@
{% include 'babybuddy/form_field.html' %}
</div>
{% endfor %}
<button type="submit" class="btn btn-primary">{% trans "Submit" %}</button>
<button type="submit" class="btn btn-primary btn-block btn-lg p-3 fixed-bottom">{% trans "Submit" %}</button>
</form>
</div>