Yaswanth56 commited on
Commit
52be7ba
·
verified ·
1 Parent(s): 068bcb8

Update templates/apply_rewards.html

Browse files
Files changed (1) hide show
  1. templates/apply_rewards.html +12 -26
templates/apply_rewards.html CHANGED
@@ -3,35 +3,21 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Bill Summary</title>
7
  <link rel="stylesheet" href="/static/styles.css">
8
  </head>
9
  <body>
10
- <div class="form-container">
11
- <h1>Bill Summary</h1>
12
- <p>{{ message }}</p>
13
- <table>
14
- <tr>
15
- <td>Original Bill Amount:</td>
16
- <td>${{ original_bill }}</td>
17
- </tr>
18
- <tr>
19
- <td>Discount:</td>
20
- <td>${{ discount }}</td>
21
- </tr>
22
- <tr>
23
- <td>GST (18%):</td>
24
- <td>${{ gst }}</td>
25
- </tr>
26
- <tr>
27
- <td>Final Bill Amount:</td>
28
- <td>${{ final_bill }}</td>
29
- </tr>
30
- <tr>
31
- <td>Remaining Reward Points:</td>
32
- <td>{{ updated_points }}</td>
33
- </tr>
34
- </table>
35
  </div>
 
36
  </body>
37
  </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Apply Rewards</title>
7
  <link rel="stylesheet" href="/static/styles.css">
8
  </head>
9
  <body>
10
+
11
+ <div class="apply-rewards-container">
12
+ <h1>Apply Your Rewards</h1>
13
+ <p class="apply-rewards-details">Total Bill: <strong>${{ original_bill }}</strong></p>
14
+ <p class="apply-rewards-details">Discount: <strong>${{ discount }}</strong></p>
15
+ <p class="apply-rewards-details">GST: <strong>${{ gst }}</strong></p>
16
+ <p class="apply-rewards-details">Final Bill: <strong>${{ final_bill }}</strong></p>
17
+
18
+ <button class="apply-rewards-button">Confirm Payment 🍽️</button>
19
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  </div>
21
+
22
  </body>
23
  </html>