-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlist.html
More file actions
80 lines (67 loc) · 2.36 KB
/
list.html
File metadata and controls
80 lines (67 loc) · 2.36 KB
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
<html>
<head>
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Heebo:500,400,300,700,800|Lato:700,700i,300i,300,900i,900,400i,400|PT+Sans:700,700i,400i,400"
/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="eos-voting.css">
</head>
<body>
<header>
<div class="container text-center p-4">
<a href="https://www.liquideos.com/" target="_blank">
<img src="liquideos-logo.png" width="250px" class="mb-3">
</a>
<h1 class="text-white">EOS Block Producer Voting Tool</h1>
</div>
</header>
<a href="https://github.com/bancorprotocol/liquideos-voting-app" target="_blank">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"
alt="Fork me on GitHub">
</a>
<div class="container bg-white">
<h1 class="mt-3">Select Block Producers</h1>
<p class="mt-3">Please select up to 30 Block Producers. Your vote is weighted by the amount of EOS you have in your wallet.
</p>
<div class="mt-2" id="messages">
</div>
<div class="form-group d-flex ">
<a href="index.html">
<button class="btn btn-link mr-16">Back</button>
</a>
<!-- <a href="vote.html"> -->
<button class="btn btn-primary mr-16" id="list-next" onclick="listNextClick()" disabled>Next</button>
<!-- </a> -->
<input type="text" id="search" class="form-control" onkeyup="voter.search()" placeholder="Search..." />
</div>
<!-- <div class="mb-2"> -->
<!-- <div class="row justify-content-center">
<div class="col test">
<a href="list.html"><button class="btn btn-primary">Next</button></a>
</div>
</div> -->
<!-- </div> -->
<table class="table table-striped" id="bps">
<thead>
<tr>
<th scope="col">Select</th>
<th scope="col">Owner</th>
<!-- <th scope="col">Location</th> -->
<th scope="col">Total Votes</th>
<th scope="col">Percentage of Votes</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<footer class="text-center footer">
<div class="container">
<div class="text-white">Brought to you by
<a href="https://liquideos.com" target="_blank">LiquidEOS.com</a>
</div>
</div>
</footer>
<script src="eosjs.js"></script>
<script type="text/javascript" src="eos-voting.js"></script>
</body>
</html>