-
Notifications
You must be signed in to change notification settings - Fork 2
/
view.html
64 lines (59 loc) · 2.05 KB
/
view.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>View</title>
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/bootstrap-icons.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container mt-4">
<div class="row" style="margin-bottom: -70px;">
<div class="container button-small">
<div class="row mb-7">
<div class="main">
<div class="up d-flex justify-content-center">
<button class="custom-button" id="connect-wallet-button">
<p class="mb-0 fs-2" id="metamask-wallet" style="font-size: 1rem;">Connect Wallet</p>
</button>
</div>
<div class="down d-flex justify-content-center ">
<button class="create-token-button" id="create-token-page">
<p class="mb-0 mt-47 fs-2 ">Create</p>
</button>
<button class="view-tokens-button active">
<p class="mb-0 mt-47 fs-2">View</p>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<main>
<div class="container">
<div class="row justify-content-center">
<table class="table table-hover">
<thead>
<tr>
<th scope="col" class="col-2 text-start">#</th>
<th scope="col" class="col-2 text-start">Name</th>
<th scope="col" class="col-2">TotalSupply</th>
<th scope="col" class="col-1">Decimals</th>
<th scope="col" class="col-6">Contract Address</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</main>
<script src="./node_modules/web3/dist/web3.min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script type="module" src="./js/main.js"></script>
</body>
</html>