VT3 / AB /index.html
Ashrafb's picture
Update AB/index.html
80824b5 verified
raw
history blame
1.04 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upload Image</title>
</head>
<body>
<h1>Upload Image</h1>
<form action="/upload/" method="post" enctype="multipart/form-data">
<label for="file">Select Image:</label><br>
<input type="file" id="file" name="file" accept="image/*" required><br><br>
<label for="top">Top:</label><br>
<input type="number" id="top" name="top" value="200" required><br><br>
<label for="bottom">Bottom:</label><br>
<input type="number" id="bottom" name="bottom" value="200" required><br><br>
<label for="left">Left:</label><br>
<input type="number" id="left" name="left" value="200" required><br><br>
<label for="right">Right:</label><br>
<input type="number" id="right" name="right" value="200" required><br><br>
<button type="submit">Upload and Process Image</button>
</form>
</body>
</html>