51 lines
1.3 KiB
HTML
51 lines
1.3 KiB
HTML
<!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>
|