rewards_app / templates /apply_rewards.html
Yaswanth56's picture
Rename flask-salesforce-app/templates/apply_rewards.html to templates/apply_rewards.html
71bcf21 verified
raw
history blame contribute delete
900 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bill Summary</title>
<link rel="stylesheet" href="/static/styles.css">
</head>
<body>
<div class="form-container">
<h1>Bill Summary</h1>
<p>{{ message }}</p>
<table>
<tr>
<td>Original Bill Amount:</td>
<td>₹{{ original_bill }}</td>
</tr>
<tr>
<td>Discount:</td>
<td>₹{{ discount }}</td>
</tr>
<tr>
<td>GST (18%):</td>
<td>₹{{ gst }}</td>
</tr>
<tr>
<td>Final Bill Amount:</td>
<td>₹{{ final_bill }}</td>
</tr>
<tr>
<td>Remaining Reward Points:</td>
<td>{{ updated_points }}</td>
</tr>
</table>
</div>
</body>
</html>