-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.33 KB
/
index.html
File metadata and controls
40 lines (33 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<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>Connect MetaMask</title>
<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=Quicksand:wght@400;500;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="container">
<button class="button" id="connectButton">
<img src="./images/metamask.png" alt="metamask logo" /> Connect wallet
<span id="loading"
><span>•</span><span>•</span><span>•</span></span
>
</button>
<div id="walletID">Your wallet is not connected yet.</div>
<div id="mobileDeviceWarning">
If you are on a mobile phone, please use MetaMask application's browser
to connect.
</div>
</div>
<div class="alert" id="installAlert">
Please refresh your browser after installing the Metamask plugin
<button class="button" id="reloadButton">Reload page</button>
</div>
<script type="text/javascript" src="./main.js"></script>
</body>
</html>