-
Notifications
You must be signed in to change notification settings - Fork 130
/
index.html
68 lines (68 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>NFTs</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<script
src="https://cdn.ethers.io/lib/ethers-5.5.umd.min.js"
type="application/javascript"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<link href="./style/style.css" rel="stylesheet" />
<link href="./style/tooltip.css" rel="stylesheet" />
<script src="./js/abi.js" type="application/javascript"></script>
<script src="./js/env.js" type="application/javascript"></script>
<script src="./js/utils.js" type="application/javascript"></script>
<script src="./js/render.js" type="application/javascript"></script>
<script src="./js/script.js" type="application/javascript"></script>
<script></script>
</head>
<body>
<div class="container">
<div class="header br">
<div class="header-l">
<h1>
A matter of minutes. And zero developing costs. Want to build your
own NFT collection?
</h1>
<a href="https://apillon.io/" class="builders" target="_blank">
Build with Apillon
</a>
</div>
<div class="header-r">
<img src="images/header.svg" />
</div>
</div>
<div class="box collection br text-center">
<div id="collection"></div>
<div class="drop" id="drop"></div>
<div class="btn-connect-wrapper">
<button id="btnConnect" onclick="connectWallet();">
Connect wallet
</button>
<span id="connectError" class="error"></span>
</div>
<span id="generalError" class="error"></span>
</div>
<div id="actions" style="display: none">
<h2 class="text-center">Show NFTs:</h2>
<div class="actions">
<button id="btnAllNFTs" onclick="loadAllNFTs();">All nfts</button>
<button id="myNFTs" onclick="loadMyNFTs();">My nfts</button>
</div>
</div>
<div class="grid" id="nfts"></div>
<div class="modals" id="modals"></div>
</div>
</body>
</html>