aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/reserves.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/reserves.html
parent7b6706bee3cbecc84b330672ecdb5764d7d68756 (diff)
downloadwallet-core-5243a707260af9de820ad02b1972d3280164cf19.tar.xz
webext popup
Diffstat (limited to 'extension/popup/reserves.html')
-rw-r--r--extension/popup/reserves.html29
1 files changed, 25 insertions, 4 deletions
diff --git a/extension/popup/reserves.html b/extension/popup/reserves.html
index 63db032e5..d5b5a1862 100644
--- a/extension/popup/reserves.html
+++ b/extension/popup/reserves.html
@@ -1,7 +1,28 @@
-<!doctype html>
+<!DOCTYPE html>
-<a href="javascript:history.back()">Back</a>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <link rel="stylesheet" href="popup.css" type="text/css">
+ </head>
-<p />
+ <body>
+ <div id="header" class="nav">
+ <a href="wallet.html">Wallet</a>
+ <a href="transactions.html">Transactions</a>
+ <a href="reserves.html" class="active">Reserves</a>
+ </div>
-Your reserves are listed here.
+ <div id="content">
+ <div id="reserves">
+ There are no reserves available.
+ </div>
+ </div>
+
+ <div id="footer" class="nav">
+ <a href="reserves.html" class="active">List reserves</a>
+ <a href="reserve-create.html">Create reserve</a>
+ </div>
+
+ </body>
+</html>