-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclient.html
49 lines (49 loc) · 1.4 KB
/
client.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
<html>
<head>
<title>Signer Example</title>
</head>
<body>
<div>
<div>
Account: <b><span id="address"></span></b>:
<p/>
<div>
Balance: <span id="balance"></span>
</div>
<p/>
<div>
<button id="refreshbalance">Refresh Balance</button>
</div>
<p/>
<div>
Agreement: <span id="agreement"></span>
</div>
<p/>
<div>
<button id="refresh">Refresh Agreement</button>
</div>
<p/>
<div>
Signed: <span id="signed"></span>
</div>
<p/>
<p/>
<div>
<button id="signbutton">Sign</button>
</div>
</div>
<p/>
<div>
Create New Agreement:
<p/>
<div>
<input id="agreementInput" placeholder="Agreement"/>
<button id="agreementButton">Create</button>
</div>
</div>
</div>
</body>
<script src="./web3.min.js"></script>
<script src="./superagent.min.js"></script>
<script src="./client.js"></script>
</html>