StockDetection / index.html
osamaifti's picture
Create index.html
0381889 verified
raw
history blame
No virus
453 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shelf Classifier</title>
</head>
<body>
<h1>Shelf Classifier</h1>
<form method="POST" enctype="multipart/form-data">
<input type="file" name="file">
<input type="submit" value="Upload">
</form>
{% if message %}
<p>{{ message }}</p>
{% endif %}
</body>
</html>