| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>FrostBite - Top-Up</title> |
| <link rel="stylesheet" href="styles.css"> |
| </head> |
| <body> |
|
|
| <div class="container"> |
| <h1>Top-Up Portal</h1> |
| <p>Enter your details to redeem rewards</p> |
| |
| <div class="input-group"> |
| <label for="player-uid">Player UID</label> |
| <input type="text" id="player-uid" placeholder="Enter your UID"> |
| </div> |
|
|
| <div class="input-group"> |
| <label for="gift-code">Gift Code</label> |
| <input type="text" id="gift-code" placeholder="Enter your Gift Code"> |
| </div> |
|
|
| <button id="submit-btn">Redeem Now</button> |
| |
| <p id="message"></p> |
| </div> |
|
|
| <script src="script.js"></script> |
| </body> |
| </html> |