Initial commit of project

This commit is contained in:
2021-02-16 00:20:14 -05:00
parent f818047117
commit 58de7cce9f
14 changed files with 588 additions and 0 deletions

21
test.html Normal file
View File

@@ -0,0 +1,21 @@
<!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>