Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Apply Rewards</title> | |
<link rel="stylesheet" href="/static/styles.css"> | |
</head> | |
<body> | |
<div class="apply-rewards-container"> | |
<h1>Apply Your Rewards</h1> | |
<p class="apply-rewards-details">Total Bill: <strong>${{ original_bill }}</strong></p> | |
<p class="apply-rewards-details">Discount: <strong>${{ discount }}</strong></p> | |
<p class="apply-rewards-details">GST: <strong>${{ gst }}</strong></p> | |
<p class="apply-rewards-details">Final Bill: <strong>${{ final_bill }}</strong></p> | |
<button class="apply-rewards-button">Confirm Payment 🍽️</button> | |
</div> | |
</body> | |
</html> | |