Spaces:
Runtime error
Runtime error
Create apply_rewards.html
Browse files
flask-salesforce-app/templates/apply_rewards.html
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<title>Bill Summary</title>
|
5 |
+
<link rel="stylesheet" href="/static/styles.css">
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<div class="form-container">
|
9 |
+
<h1>Bill Summary</h1>
|
10 |
+
<p>{{ message }}</p>
|
11 |
+
<table>
|
12 |
+
<tr>
|
13 |
+
<td>Original Bill Amount:</td>
|
14 |
+
<td>₹{{ original_bill }}</td>
|
15 |
+
</tr>
|
16 |
+
<tr>
|
17 |
+
<td>Discount:</td>
|
18 |
+
<td>₹{{ discount }}</td>
|
19 |
+
</tr>
|
20 |
+
<tr>
|
21 |
+
<td>GST (18%):</td>
|
22 |
+
<td>₹{{ gst }}</td>
|
23 |
+
</tr>
|
24 |
+
<tr>
|
25 |
+
<td>Final Bill Amount:</td>
|
26 |
+
<td>₹{{ final_bill }}</td>
|
27 |
+
</tr>
|
28 |
+
<tr>
|
29 |
+
<td>Remaining Reward Points:</td>
|
30 |
+
<td>{{ updated_points }}</td>
|
31 |
+
</tr>
|
32 |
+
</table>
|
33 |
+
</div>
|
34 |
+
</body>
|
35 |
+
</html>
|