-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: BOOM TOKEN <marinachris112@outlook.com>
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Boom Token Reward</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>🔥 Boom Token Reward</h1> | ||
<p>Your decentralized platform for BOOM token rewards.</p> | ||
<button id="toggleTheme">🌙 Dark Mode</button> | ||
</header> | ||
|
||
<main> | ||
<button id="connectWallet">🔗 Connect Wallet</button> | ||
<div id="userAddress">Not Connected</div> | ||
|
||
<section id="rewardsSection" style="display: none;"> | ||
<h2>Your Rewards</h2> | ||
<p id="rewardAmount">Fetching rewards...</p> | ||
<button id="claimRewards">Claim Rewards</button> | ||
</section> | ||
</main> | ||
|
||
<footer> | ||
<p>© 2025 Boom Token Reward. All rights reserved.</p> | ||
</footer> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |