aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/wallet.html
diff options
context:
space:
mode:
authortg(x) <*@tg-x.net>2015-12-03 20:07:03 +0100
committertg(x) <*@tg-x.net>2015-12-03 20:07:03 +0100
commit5243a707260af9de820ad02b1972d3280164cf19 (patch)
tree46e6918fca8edfeddb919b7a89307328390a0ec1 /extension/popup/wallet.html
parent7b6706bee3cbecc84b330672ecdb5764d7d68756 (diff)
webext popup
Diffstat (limited to 'extension/popup/wallet.html')
-rw-r--r--extension/popup/wallet.html50
1 files changed, 39 insertions, 11 deletions
diff --git a/extension/popup/wallet.html b/extension/popup/wallet.html
index f27387b1d..a6864896b 100644
--- a/extension/popup/wallet.html
+++ b/extension/popup/wallet.html
@@ -3,19 +3,47 @@
<html>
<head>
<meta charset="utf-8">
+ <link rel="stylesheet" href="popup.css" type="text/css">
+ <script src="wallet.js" type="text/javascript"></script>
</head>
-<body>
- This is the Taler wallet.
+ <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>
- <p />
-
- <a href='reserves.html'>Reserves</a>
- <a href='transactions.html'>Transaction History</a>
-
- <p />
-
- Your balance will be displayed here.
-</body>
+ <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>