-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Altushka NFT Minting</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/web3.min.js"></script>
<script src="app.js" defer></script>
</head>
<body>
<h1>Altushka NFT Minting</h1>
<button id="connectWallet">Connect Wallet</button>
<div id="mintSection" style="display: none;">
<h2>Mint Altushka NFT</h2>
<p>Price: 0.0420 BNB</p>
<button id="mintButton">Mint NFT</button>
<p id="feedback"></p>
</div>
<div id="transferSection" style="display: none;">
<h2>Transfer NFT</h2>
<label for="recipient">Recipient Address:</label>
<input type="text" id="recipient" placeholder="Enter recipient address"><br><br>
<label for="tokenId">Token ID:</label>
<input type="text" id="tokenId" placeholder="Enter token ID"><br><br>
<button id="transferButton">Transfer NFT</button>
<p id="transferFeedback"></p>
</div>
<script>
// Add your JavaScript code here if needed
</script>
</body>
</html>