Files
tmnf-replay-server/templates/upload.html

16 lines
410 B
HTML

<html>
<head>
{% include "head.html" %}
</head>
<body>
{% include 'home-button.html' %}
<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>