Reaperxxxx commited on
Commit
27e80af
·
verified ·
1 Parent(s): cc50842

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +32 -19
index.html CHANGED
@@ -1,19 +1,32 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE 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>Astro Shooter - Top-Up</title>
7
+ <link rel="stylesheet" href="styles.css">
8
+ </head>
9
+ <body>
10
+
11
+ <div class="container">
12
+ <h1>Top-Up Portal</h1>
13
+ <p>Enter your details to redeem rewards</p>
14
+
15
+ <div class="input-group">
16
+ <label for="player-uid">Player UID</label>
17
+ <input type="text" id="player-uid" placeholder="Enter your UID">
18
+ </div>
19
+
20
+ <div class="input-group">
21
+ <label for="gift-code">Gift Code</label>
22
+ <input type="text" id="gift-code" placeholder="Enter your Gift Code">
23
+ </div>
24
+
25
+ <button id="submit-btn">Redeem Now</button>
26
+
27
+ <p id="message"></p>
28
+ </div>
29
+
30
+ <script src="script.js"></script>
31
+ </body>
32
+ </html>