File size: 884 Bytes
27e80af 43a05b4 27e80af | 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 | <!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> |