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"> | |
{% for item in menu %} | |
<div class="menu-item"> | |
<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> | |
</div> | |
{% endfor %} | |
</div> | |
<script> | |
// ✅ Function to Add Items to Cart (Just a simple alert for now) | |
function addToCart(name, price) { | |
alert(name + " added to cart!"); | |
} | |
</script> | |
</body> | |
</html> | |