-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 863 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Crypto Airdrop Claim</title>
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.jsdelivr.net/npm/web3@1.9.0/dist/web3.min.js"></script>
</head>
<body>
<div class="container">
<h1>Claim Your Airdrop</h1>
<div id="countdown" class="countdown"></div>
<button id="connectButton" class="wallet-button">Connect Wallet</button>
<form id="claimForm" class="claim-form">
<input type="text" id="username" placeholder="Your Name" required />
<input type="email" id="email" placeholder="Email Address" required />
<button type="submit">Claim</button>
</form>
<div id="status" class="status"></div>
</div>
<script src="script.js"></script>
</body>
</html>