2024-05-18 20:46:41 +02:00
|
|
|
<!DOCTYPE html>
|
2024-05-18 15:57:25 +02:00
|
|
|
<html lang="en">
|
2024-05-18 20:46:41 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Upload Image</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input type="file" id="imageInput" accept="image/*" required=""> <button onclick="uploadImage()" id="upload-image-btn">Upload Image</button>
|
|
|
|
<br><br>
|
|
|
|
<div id="editable-classes"></div>
|
|
|
|
<button id="add-class-btn">Add Class</button>
|
|
|
|
<div id="suggested-classes"></div>
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<button onclick="generateIngredients()">Generate Ingredients</button>
|
|
|
|
<script src="/script.js"></script>
|
|
|
|
</body>
|
2024-05-18 15:57:25 +02:00
|
|
|
</html>
|