-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (35 loc) · 1.53 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="contain">
<div class="main">
<button id="connectWallet">Connect Wallet</button>
<form action="">
<label for="publickey">PUBLIC KEY:</label><input type="text" placeholder="Public Key" id="publickey">
<br><br>
<label for="amount">AMOUNT:</label><input type="number" placeholder="Amount" id="amount">
<br><br>
<label for="token">TOKEN:</label>
<select id="tokenType">
<option value="SOL">SOL</option>
<!-- <option value="USDC">USDC</option> -->
<!-- Add more tokens as needed -->
</select>
<br><br>
<button type="submit" id="sendTokens">Send</button>
</form>
</div>
</div>
<div id="loadingMessage">Transaction is being processed, please wait...</div>
<div id="successMessage">Transaction completed successfully!</div>
<div id="errorMessage">Error occurred while processing the transaction.</div>
<script src="https://cdn.jsdelivr.net/npm/@solana/web3.js@latest/lib/index.iife.min.js"></script>
<script src="script.js"></script>
</body>
</html>