Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Biryani Hub Menu</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
background-color: #f8f8f8; | |
text-align: center; | |
margin: 0; | |
padding: 20px; | |
} | |
h1 { | |
color: #ff5722; | |
} | |
.menu-container { | |
display: flex; | |
flex-wrap: wrap; | |
justify-content: center; | |
margin-top: 20px; | |
} | |
.menu-item { | |
background: white; | |
padding: 15px; | |
margin: 10px; | |
border-radius: 8px; | |
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); | |
width: 300px; | |
text-align: left; | |
} | |
.menu-item h3 { | |
margin: 0; | |
color: #333; | |
} | |
.menu-item p { | |
margin: 5px 0; | |
color: #555; | |
} | |
.menu-item button { | |
background-color: #ff5722; | |
color: white; | |
border: none; | |
padding: 8px; | |
cursor: pointer; | |
width: 100%; | |
border-radius: 5px; | |
} | |
.menu-item button:hover { | |
background-color: #e64a19; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Restaurant Menu</h1> | |
<div class="menu-container" id="menu-list"> | |
<p>Loading menu...</p> | |
</div> | |
<script> | |
// ✅ Fetch Menu from Flask API | |
function fetchMenu() { | |
fetch("/menu") // Calls Flask API | |
.then(response => response.json()) // Convert response to JSON | |
.then(data => { | |
if (data.success) { | |
let menuContainer = document.getElementById("menu-list"); | |
menuContainer.innerHTML = ""; // Clear previous content | |
data.menu.forEach(item => { | |
let menuItem = document.createElement("div"); | |
menuItem.classList.add("menu-item"); | |
menuItem.innerHTML = ` | |
<h3>${item.name}</h3> | |
<p><strong>Category:</strong> ${item.category}</p> | |
<p><strong>Price:</strong> $${item.price}</p> | |
<p><strong>Ingredients:</strong> ${item.ingredients}</p> | |
<button onclick="addToCart('${item.name}', ${item.price})">Add to Cart</button> | |
`; | |
menuContainer.appendChild(menuItem); | |
}); | |
} else { | |
document.getElementById("menu-list").innerHTML = "<p>Error fetching menu.</p>"; | |
} | |
}) | |
.catch(error => { | |
console.error("Error fetching menu:", error); | |
document.getElementById("menu-list").innerHTML = "<p>Unable to load menu.</p>"; | |
}); | |
} | |
// ✅ Function to Add Items to Cart (Just a simple alert for now) | |
function addToCart(name, price) { | |
alert(`${name} added to cart!`); | |
} | |
// ✅ Display Menu on Page Load | |
window.onload = fetchMenu; | |
</script> | |
</body> | |
</html> | |