1 Commits

Author SHA1 Message Date
33939f631c Fix form styling
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-18 22:36:26 +01:00
2 changed files with 15 additions and 4 deletions

View File

@ -20,3 +20,11 @@ textarea {
#button-container button {
@apply mx-1;
}
th {
@apply text-left;
}
th label {
@apply mr-4;
}

View File

@ -3,11 +3,14 @@
{% block title %}{{ title }}{% endblock title %}
{% block content %}
<form method="post" enctype="multipart/form-data" class="mx-auto">
<form method="post" enctype="multipart/form-data">
<table class="mx-auto">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit"/>
{{ form.as_table }}
<tr>
<td><input type="submit" value="Submit"/></td>
</tr>
</table>
</form>
{% endblock content %}