Spaces:
Sleeping
Sleeping
File size: 920 Bytes
0c294aa ea1301b 0c294aa ea1301b 0c294aa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Your Rewards</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f7f7f7;
}
.reward-container {
padding: 20px;
border: 1px solid #ccc;
background-color: white;
text-align: center;
}
</style>
</head>
<body>
<div class="reward-container">
<h2>Your Reward Points</h2>
<p>Current Reward Points: {{ reward_points }}</p>
<form method="POST" action="/apply_rewards">
<input type="hidden" name="email" value="{{ email }}">
<input type="number" name="reward_points" value="0" required>
<button type="submit">Apply Rewards</button>
</form>
</div>
</body>
</html>
|