-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathkeyslist.html
85 lines (62 loc) · 2.62 KB
/
keyslist.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
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.4">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>List Ethereum addresses</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.0/semantic.min.css">
<link rel="icon" href="images\favicon.png">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="ui three column grid">
<div class="three wide column">
</div>
<div class="ten wide column">
<img src="images/logo.png" />
<div class="ui inverted large menu">
<a href='/' class="item centred">Home</a>
<a href='/monitoring.html' class="item centred">List keys</a>
<a href='/generate_keys.html' class="item centred">Generate</a>
<a href='/tx_builder.html' class="item centred">Tx Builder</a>
</div>
</div>
</div>
<div class="row">
<div class="ui three column grid">
<div class="three wide column">
</div>
<div class="ten wide column">
<div class="ui raised segment">
<a class="ui purple left big ribbon label">
<h4> List of Key in HSM Module</h4>
</a>
<div id="loadInstallmentsTxs" class="ui active inline loader"></div>
<table id="keys-table" class="ui single line small table">
<thead>
<tr>
<th>Id</th>
<th>Type</th>
<th>Address</th>
<th>keyGen Mechanism</th>
<th>Key Label</th>
<th>View</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
** 4160 code is EC_KEY_PAIR_GEN
</div>
</div>
<div class="three wide column">
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.1/semantic.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui-calendar/0.0.8/calendar.min.js"></script>
<script src="js\keys-table.js"></script>
</body>
</html>