Files
2022-01-11 19:10:06 +05:30

27 lines
699 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
html {
font-family: sans-serif;
}
</style>
</head>
{% comment %} http://aiworks.intranet.sumasen.net:8600/api/v1/upload {% endcomment %}
<body>
<h2>Sumase OCR file upload test</h2>
<form action="http://aiworks.intranet.sumasen.net:8600/api/v1/upload/" method="post" enctype="multipart/form-data">
<select name="engine">
<option>EasyOCR</option>
<option>Tesseract</option>
</select><br><br>
<input type="file" name="file" id="file_to_upload">
<hr>
<input type="submit" value="Upload To Server" id="upload_file_button">
</form>
</body>
</html>