fix: better layout upload site

This commit is contained in:
2023-06-11 01:01:53 +02:00
parent 3912b07c80
commit 8a57767fee

View File

@@ -1,9 +1,15 @@
<html>
<head>
{% include "head.html" %}
</head>
<body>
{% include 'home-button.html' %}
<form action="/upload" method="POST" enctype="multipart/form-data">
<div class="container">
<form class="p-3" action="/upload" method="POST" enctype="multipart/form-data"
style="border-style: dashed">
<input type="file" name="file[]" multiple=""/>
<input type="submit"/>
</form>
</div>
</body>
</html>