Spaces:
Sleeping
Sleeping
File size: 1,095 Bytes
ceec7c4 a120c9a 518902f ceec7c4 518902f fefa689 518902f ceec7c4 518902f ceec7c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rewards</title>
<link rel="stylesheet" href="/static/styles.css">
</head>
<body>
<div class="rewards-container">
<h1>Your Reward Points</h1>
<p class="reward-details">You currently have <strong>{{ points }}</strong> reward points!</p>
<!-- Display remaining details after login -->
{% if total_bill %}
<p class="reward-details">Total Bill: <strong>${{ total_bill }}</strong></p>
{% endif %}
{% if discount %}
<p class="reward-details">Discount: <strong>${{ discount }}</strong></p>
{% endif %}
{% if gst %}
<p class="reward-details">GST: <strong>${{ gst }}</strong></p>
{% endif %}
{% if final_bill %}
<p class="reward-details">Final Bill: <strong>${{ final_bill }}</strong></p>
{% endif %}
<button class="reward-button">Use Your Rewards 🍽️</button>
</div>
</body>
</html>
|