blob: 42d72e676447e83ddc288d4883ecdae765471efb (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="popup.css" type="text/css">
<script src="../lib/util.js" type="text/javascript"></script>
<script src="wallet.js" type="text/javascript"></script>
</head>
<body>
<div id="header" class="nav">
<a href="wallet.html" class="active">Wallet</a>
<a href="transactions.html">Transactions</a>
<a href="reserves.html">Reserves</a>
</div>
<div id="content">
<table id="wallet-table" class="hidden">
<thead>
<tr>
<th colspan="2">Amount</th>
<th>Show</th>
</tr>
</thead>
<tbody>
<!--
<tr>
<td class="amount">42</td>
<td class="currency">EUR</td>
<td class="select"><input type="checkbox" /></td>
</tr>
<tr>
<td class="amount">23</td>
<td class="currency">USD</td>
<td class="select"><input type="checkbox" /></td>
</tr>
<tr>
<td class="amount">1337</td>
<td class="currency">KUD</td>
<td class="select"><input type="checkbox" /></td>
</tr>
-->
</tbody>
</table>
<p id="wallet-empty">The wallet is empty.</p>
</div>
</body>
</html>
|