Spaces:
Runtime error
Runtime error
File size: 453 Bytes
0381889 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!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>
|