-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (82 loc) · 3.73 KB
/
index.html
File metadata and controls
82 lines (82 loc) · 3.73 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>NFTs</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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></script>
</head>
<body>
<div class="container">
<div class="header br">
<div class="header-l">
<h1 class="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 id="logoImg" src="images/header.svg" height="126" />
</div>
</div>
<div class="box collection br text-center">
<div id="collection"></div>
<div class="drop" id="drop" style="display: none"></div>
<div class="drop">
<button class="btn btn-mint" id="btnMint" style="display: none">Mint</button>
</div>
<div class="btn-connect-wrapper">
<div class="flex gap-2">
<div id="wallet"></div>
<button class="btn inline-block" id="btnModalWallet">Connect wallet</button>
</div>
<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 class="btn" id="btnAllNFTs">All nfts</button>
<button class="btn" id="myNFTs">My nfts</button>
</div>
</div>
<div class="grid" id="nfts"></div>
<div class="modals" id="modals">
<div class="modal" id="modalWallet" >
<div class="modal-bg" id="modalWalletBg"></div>
<div class="modal-container">
<button class="btn-modal-exit" id="btnModalExit"></button>
<div class="container">
<div class="relative text-center">
<h2 class="my-4">Your NFTs, delivered with style</h2>
<div>Email them. Airdrop them. Share a link. <br>No gas fees. No fuss.</div>
<hr />
<h4 class="my-4">Connect your wallet to get started:</h4>
<div class="flex flex-col gap-2">
<button class="btn btn-wallet" id="btnConnectEW">
<span class="inline-flex items-center gap-2">
<img src="/images/ew.svg" width="20" height="20" alt="embeddedWallet" />
<span class="inline-block">Apillon Embedded Wallet</span>
</span>
</button>
<button class="btn btn-wallet" id="btnConnect">
<span class="inline-flex items-center gap-2">
<img src="/images/metaMask.svg" width="20" height="20" alt="metamask" />
<span>MetaMask</span>
</span>
</button>
<button class="btn inline-block " id="btnConnected" style="display: none">Disconnect</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="./src/main.ts" type="module" async></script>
</body>
</html>