Spaces:
Sleeping
Sleeping
File size: 754 Bytes
cfd7e45 bf2ab94 cfd7e45 bf2ab94 cfd7e45 bf2ab94 cfd7e45 bf2ab94 cfd7e45 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<!DOCTYPE html>
<html>
<head>
<title>Menu</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<h1>Biryani Hub - Menu</h1>
<a href="/cart">View Cart</a>
<div class="menu">
{% for item in menu_items %}
<div class="menu-item">
<img src="{{ item.Image1__c }}" alt="Food Image">
<h3>{{ item.Name }}</h3>
<p>{{ item.Description__c }}</p>
<p>${{ item.Price__c }}</p>
<button onclick="addToCart('{{ item.Name }}', {{ item.Price__c }})">Add</button>
</div>
{% endfor %}
</div>
<script src="{{ url_for('static', filename='js/app.js') }}"></script>
</body>
</html>
|