-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
46 lines (45 loc) · 1.97 KB
/
app.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>EthCrawler</title>
<link type="text/css" rel="stylesheet" href="./node_modules/semantic/dist/semantic.min.css"/>
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/semantic/dist/semantic.min.js"></script>
<script type="text/javascript" src="./node_modules/vis-network/dist/vis-network.min.js"></script>
<script type="text/javascript" src="./config.js"></script>
<script type="text/javascript" src="./app.js"></script>
<link rel="stylesheet" href="./app.css"/>
</head>
<body>
<div class="ui container">
<h2 class="ui center aligned icon header">
<i class="circular ethereum icon"></i>
EthCrawler
</h2>
<form id="source_form" class="ui form" style="padding-bottom: 1%">
<div class="ui action fluid input">
<input type="text" id="source_address" name="selected_source" placeholder="Source address">
<button type="submit" class="ui submit button">Search</button>
</div>
</form>
<button id="more_results" class="fluid ui orange basic button" style="margin-bottom: 1%">Click to display more results</button>
<div class="ui grid">
<div class="ten wide column">
<div id="network_graph" class='graph'></div>
</div>
<div id="info_display" class="six wide column" style="text-align: left;">
<div id="address_display">
<h3>Address information:</h3>
<table id="address_table" class="ui fixed striped celled table"></table>
<h3>Transactions:</h3>
<table id="txs_table" class="ui fixed striped celled table"> </table>
</div>
<div id="tx_display">
<h3>Transaction information:</h3>
<table id="tx_table" class="ui fixed striped celled table"></table>
</div>
</div>
</div>
</div>
</body>
</html>