-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (74 loc) · 3.96 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Misted</title>
<link rel="stylesheet" href="./css/mist.css">
<script src="./js/jquery-2.1.4.min.js"></script>
<script src="./js/mist.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js"></script>
</head>
<body>
<div class="container">
<p>
<h2>window management</h2>
<button id="minimizeBtn">minimize</button>
<button id="maximizeBtn">maximize</button>
<button id="unmaximizeBtn">unmaximize</button>
<button id="fullScreenBtn">full screen</button>
<button id="leaveFullscreenBtn">exit full screen</button>
<button id="exitBtn">exit</button>
<p>
<p>
<h2>Comms stuff</h2>
<button id="startGethBtn">Start geth</button>
<button id="stopGethBtn">Stop geth</button>
<button id="openGethWebsocket">Connect with geth</button>
<button id="closeGethWebsocket">Disconnect from geth</button>
<button id="loadWalletDappBtn">Load wallet DAPP</button>
<button id="startMinerBtn">Start miner</button>
<button id="stopMinerBtn">Stop miner</button>
<button id="getHashrateBtn">Hashrate</button>
<input id="hashrate" type="number" readonly></input>
<button id="toggleEventsBtn">Toggle events</button>
<button id="toggleLogBtn">Toggle log</button>
<span id="wsstatus">disconnected</span>
<input accept=".json" style="display:none" id="presaleWalletImportDialog" type="file" />
<button id="importPresaleWalletBtn">Import presale wallet</button>
</p>
<div class="row">
<h3>Menu</h3>
<div class="tabbable">
<ul id="menuTabs" class="nav nav-pills nav-stacked col-md-2">
<li class="active"><a href="#walletContent" data-toggle="tab">Wallet</a></li>
<li><a href="#blockChainEventContent" data-toggle="tab">Blockchain</a></li>
<li><a href="#gethLogContent" data-toggle="tab">Logging</a></li>
</ul>
<div class="tab-content col-md-10">
<div class="tab-pane active" id="walletContent">
<iframe id="dapp-wallet" frameborder="0" class="dapp-iframe" src="http://localhost:3000" style="width:100%; position:absolute; frameBorder='0'" height="550" nwdisable nwfaketop nwUserAgent></iframe>
</div>
<div class="tab-pane" id="blockChainEventContent">
<p class="gethEvents">
<span class="gethEvents">Blockchain events (ws://)</span>
<div class="gethEvents logging" id="eventlog"></div>
</p>
</div>
<div class="tab-pane" id="gethLogContent">
<p class="logPart">
<span class="logPart">Geth log (stderr)</span>
<div class="logPart logging" id="gethlog"></div>
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>