Files
PComputerVison/test.html
2021-02-16 00:20:14 -05:00

21 lines
560 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Metadata Calculator</title>
</head>
<body>
<form action = "http://localhost:4455/metadata/dev/calculate-image-metadata" method = "POST"
enctype = "multipart/form-data">
<label>Request ID</label>
<input type = "text" id = "request_id" name = "request_id"/>
<br>
<br>
<label>Image File</label>
<input type = "file" name = "image_file" />
<br>
<br>
<input type = "submit"/>
</form>
</body>
</html>