Fridge2Fit/static/index.html

20 lines
596 B
HTML
Raw Normal View History

<!DOCTYPE html>
2024-05-18 15:57:25 +02:00
<html lang="en">
<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>