picture-uploader/templates/uploadForm.html

17 lines
445 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" required>
<br>
<input type="checkbox" name="force_name" value="true">
<label for="force_name">Originalnamen beibehalten (Force Name)</label>
<br>
2024-03-08 14:59:31 +01:00
<input type="submit" value="Hochladen">
</form>
</body>
</html>