-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.51 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
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ArkFlame - Vincular wallet</title>
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></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=Poppins:wght@300&display=swap" rel="stylesheet">
<script src="app.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="claim" id='step-1' style="display: block;">
<p><img id='logo' src="https://i.imgur.com/DUxZiAV.jpg" /></p>
<p><h2>Primero, tenés que iniciar sesión</h2></p>
<p><button id='button' onclick="login()">Vincular con Metamask</button></p>
</div>
<div class="claim" id='step-2' style="display: none;">
<p><img id='logo' src="https://i.imgur.com/DUxZiAV.jpg" /></p>
<p><h2>Muy bien, ahora añadí la red Polygon a tu wallet</h2></p>
<p><button id='button' onclick="addChain()">Añadir cadena a tu wallet</button></p>
</div>
<div class="claim" id='step-3' style="display: none;">
<p><img id='logo' src="https://i.imgur.com/DUxZiAV.jpg" /></p>
<p><h2>Ya casi terminás. Solo falta añadir el token a tu wallet</h2></p>
<p><button id='button' onclick="addToken()">Añadir token a tu wallet</button></p>
</div>
<script src="app.js"></script>
</body>