Add vite react #45

Closed
lukas wants to merge 42 commits from add-frontend into main
2 changed files with 15 additions and 9 deletions
Showing only changes of commit dc6c295ee7 - Show all commits

View File

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

View File

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