Files
OpenEPaperLink/ESP32_AP-Flasher/data/www/upload-test.html
2023-05-23 21:06:50 +02:00

22 lines
655 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Image Upload Form</title>
</head>
<body>
<form method="post" enctype="multipart/form-data" action="/imgupload">
<label for="mac">Enter a 6 or 8 byte MAC address:</label><br>
<input type="text" id="mac" name="mac"><br>
<label for="dither">Floyd Steinberg dithering (0=off, 1=on)</label><br>
<input type="text" id="dither" name="dither"><br>
<label for="image">Select an image to upload. Must have the correct resolution for the tag (rotating is allowed):</label><br>
<input type="file" id="image" name="file"><br>
<input type="submit" value="Upload">
</form>
</body>
</html>