picture-uploader/templates/uploadForm.html
2024-03-08 14:59:31 +01:00

12 lines
268 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Bild hochladen</title>
</head>
<body>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="image">
<input type="submit" value="Hochladen">
</form>
</body>
</html>