Files
planetposen-images/upload.html
2022-12-10 16:07:40 +01:00

17 lines
361 B
HTML

<html>
<head>
<title>Upload file</title>
</head>
<body>
<form
enctype="multipart/form-data"
action="http://127.0.0.1:8000/api/v1/images"
method="post"
>
<input type="file" name="file" />
<input type="hidden" name="token" value="{{.}}" />
<input type="submit" value="upload" />
</form>
</body>
</html>