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

Update templates/rewards_above.html

Browse files
Files changed (1) hide show
  1. templates/rewards_above.html +7 -24
templates/rewards_above.html CHANGED
@@ -2,32 +2,15 @@
2
  <html lang="en">
3
  <head>
4
  <meta charset="UTF-8">
5
- <title>Your Rewards</title>
6
- <style>
7
- body {
8
- display: flex;
9
- justify-content: center;
10
- align-items: center;
11
- height: 100vh;
12
- background-color: #f7f7f7;
13
- }
14
- .reward-container {
15
- padding: 20px;
16
- border: 1px solid #ccc;
17
- background-color: white;
18
- text-align: center;
19
- }
20
- </style>
21
  </head>
22
  <body>
23
- <div class="reward-container">
24
- <h2>Your Reward Points</h2>
25
- <p>Current Reward Points: {{ reward_points }}</p>
26
- <form method="POST" action="/apply_rewards">
27
- <input type="hidden" name="email" value="{{ email }}">
28
- <input type="number" name="reward_points" value="0" required>
29
- <button type="submit">Apply Rewards</button>
30
- </form>
31
  </div>
 
32
  </body>
33
  </html>
 
2
  <html lang="en">
3
  <head>
4
  <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Rewards Above</title>
7
+ <link rel="stylesheet" href="/static/styles.css">
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  </head>
9
  <body>
10
+
11
+ <div class="rewards-above-container">
12
+ <h1>Your Rewards</h1>
 
 
 
 
 
13
  </div>
14
+
15
  </body>
16
  </html>