-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
59 lines (52 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bank Negara</title>
</head>
<body>
<h2>Bank Negara Decentralized Application</h2>
<div id="band"></div>
</br>
</br>
<div class="container">
<div>
<label><b>Create Account: </b></label>
<input type="text" id="name" placeholder=" Enter Name" required />
<button id="createAccount">Create </button>
</div>
<div>
<label><b>Deposit Balance: </b></label>
<input type="number" id="depositAmount" placeholder="Enter Amount Ether " required />
<button id="deposit">Deposit</button>
</div>
<div>
<label><b>Withdraw Amount: </b></label>
<input type="number" id="withdrawAmount" placeholder="Enter amount in Ether" required />
<button id="withdraw">Withdraw</button>
</div>
<div>
<label><b>Transfer Funds: </b></label>
<input type="text" id="toAddress" placeholder="Enter Address to transfer." required />
<input type="number" style="width:10%;" id="transferAmount" placeholder="Enter Amount in Ether." required />
<button id="directTransfer">Direct Transfer </button>
</div>
<div>
<button id="getAccountDetails"> Get Account Summary </button>
</div>
</br>
<div id="response">
<p><b>Name: </b><span id="getName">??</span></p>
<p><b>Address: </b><span id="getAddress">??</span></p>
<p><b>Balance: </b><span id="getBalance">??</span></p>
</div>
</div>
<hr>
<div id="log"></div>
<link rel="stylesheet" href="index.css">
<script src="web3.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="index.js"></script>
</body>
<footer style="text-align: right;">
</footer>
</html>