-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (70 loc) · 2.77 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
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./content/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./content/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./content/img/favicon-16x16.png">
<link rel="manifest" href="./content/img/site.webmanifest">
<link rel="stylesheet" href="./content/css/style.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script src="https://cdnjs.cloudflare.com/ajax/libs/web3/4.5.0/web3.min.js"
integrity="sha512-FhAl50BpK3gf9K//lbAWek9EEQEtGQyyXZNc1fuwcC2tVf2cskiJBcumXY0zJksYtms6S5cqubp1MNfUYTkO2A=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap"
rel="stylesheet">
<script type="module" src="./script/app.js" defer></script>
<title>Trans Eth Network</title>
</head>
<body>
<header>
<h1>Trans Eth Network</h1>
</header>
<div class="stars"></div>
<div class="moon"></div>
<div class="eth">
<div class="bottom">
<div class="left"></div>
<div class="right"></div>
<div class="up"></div>
<div class="down"></div>
</div>
<div class="top">
<div class="left"></div>
<div class="right"></div>
<div class="up"></div>
<div class="down"></div>
</div>
</div>
<div class="eth-box">
<button class="action-button" id="connect-mm">Connect Wallet</button>
<input type="text" class="input-field" id="account" placeholder="From">
<button class="action-button" id="checkBalance">Balance</button>
<div class="balance-display">...ETH</div>
<div id="balance"></div>
<p id="blockNumber"></p>
<input type="text" class="input-field" id="amount" placeholder="Amount">
<input type="text" class="input-field" id="toAccount" placeholder="To">
<button class="action-button" id="sendTrx">Send</button>
</div>
<div class="trx-box">
<div id="transactions"></div>
</div>
<footer>
<p>
© Trans Eth Network
</p>
<a href="https://www.youtube.com/sanjindumisic" target="_blank" rel="noopener noreferrer">
<img src="./content/img/youtube.png" alt="YouTube">
</a>
<a href="https://www.linkedin.com/in/sanjindumisic/" target="_blank" rel="noopener noreferrer">
<img src="./content/img/linkedin.png" alt="LinkedIn">
</a>
<a href="https://github.com/codebatine" target="_blank" rel="noopener noreferrer">
<img src="./content/img/github.png" alt="GitHub">
</a>
</footer>
</body>
</html>