-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
31 lines (30 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en" >
<head>
<title>Transfer MetaCoins</title>
<meta charset="utf-8">
<meta name="author" content="Kenneth Hu [email protected]">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href="public/css/app.css" rel='stylesheet' type='text/css'>
<script src="public/js/analytics.js"></script>
<script src="public/js/jquery-3.2.1.min.js"></script>
<script src="public/js/truffle-contract.js"></script>
<script src="public/js/web3.min.js"></script>
<script src="public/js/app.js"></script>
</head>
<body>
<h1>MetaCoin</h1>
<h2>Example Truffle Dapp</h2>
<h3><a href="https://github.com/kennethhutw/MetaCoinWebSite" target="_blank">GitHub</a></h3>
<h3>You have <span class="black"><span id="balance"></span> META</span></h3>
<br>
<h1>Send MetaCoin</h1>
<br><label for="amount">Amount:</label><input type="text" id="amount" placeholder="e.g., 95"></input>
<br><label for="receiver">To Address:</label><input type="text" id="receiver" placeholder="e.g., 0x93e66d9baea28c17d9fc393b53e3fbdd76899dae"></input>
<br><br><button id="send" onclick="App.sendCoin()">Send MetaCoin</button>
<br><br>
<span id="status"></span>
<br>
<span class="hint"><strong>Hint:</strong> open the browser developer console to view any errors and warnings.</span>
</body>
</html>