File size: 784 Bytes
63b254b
 
 
50526c7
 
52be7ba
63b254b
 
 
52be7ba
 
 
 
 
 
 
 
 
 
63b254b
52be7ba
63b254b
 
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 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>