picture-uploader/templates/uploadForm.html

13 lines
268 B
HTML
Raw Normal View History

2024-03-08 14:59:31 +01:00
<!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>