-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
27 lines (27 loc) · 1.13 KB
/
popup.html
File metadata and controls
27 lines (27 loc) · 1.13 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Pathfinders</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="content-wrapper">
<div class="tooltip">
<img src="images/leaf07.webp" class="leaf" />
<span class="tooltiptext">Hey there! I just want to let you know that this little tool is not affiliated with the Pathfinders project. It is built and maintained by a community member.<br><br>
Contact n8tr0n in the Pathfinders Discord server if you need help or have any suggestions.</span>
</div>
<img src="images/pathfinders001.webp" class="logo" />
<input type="text" id="walletAddress" placeholder="Enter Solana Wallet Address">
<div id="buttonContainer">
<button id="fetchNFTs" class="summon">SUMMON</button>
<button id="deleteWallet" class="slumber">SLUMBER</button>
</div>
<div id="noticeContainer"></div>
<select id="nftSelector" style="display: none;"></select>
<div id="nftDisplay"></div>
</div>
<script src="popup.js"></script>
</body>
</html>