aboutsummaryrefslogtreecommitdiff
path: root/extension/popup
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2015-11-25 20:41:31 +0100
committerFlorian Dold <florian.dold@gmail.com>2015-11-25 20:46:36 +0100
commit7b6706bee3cbecc84b330672ecdb5764d7d68756 (patch)
tree5941b2d8a53296a4e64712068f82717205840a05 /extension/popup
downloadwallet-core-7b6706bee3cbecc84b330672ecdb5764d7d68756.tar.xz
Add skeleton for WebExtensions wallet
Diffstat (limited to 'extension/popup')
-rw-r--r--extension/popup/reserves.html7
-rw-r--r--extension/popup/transactions.html7
-rw-r--r--extension/popup/wallet.html21
3 files changed, 35 insertions, 0 deletions
diff --git a/extension/popup/reserves.html b/extension/popup/reserves.html
new file mode 100644
index 000000000..63db032e5
--- /dev/null
+++ b/extension/popup/reserves.html
@@ -0,0 +1,7 @@
+<!doctype html>
+
+<a href="javascript:history.back()">Back</a>
+
+<p />
+
+Your reserves are listed here.
diff --git a/extension/popup/transactions.html b/extension/popup/transactions.html
new file mode 100644
index 000000000..427100853
--- /dev/null
+++ b/extension/popup/transactions.html
@@ -0,0 +1,7 @@
+<!doctype html>
+
+<a href="javascript:history.back()">Back</a>
+
+<p />
+
+Your past transactions are listed here.
diff --git a/extension/popup/wallet.html b/extension/popup/wallet.html
new file mode 100644
index 000000000..f27387b1d
--- /dev/null
+++ b/extension/popup/wallet.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <meta charset="utf-8">
+ </head>
+
+<body>
+ This is the Taler wallet.
+
+ <p />
+
+ <a href='reserves.html'>Reserves</a>
+ <a href='transactions.html'>Transaction History</a>
+
+ <p />
+
+ Your balance will be displayed here.
+</body>
+
+</html>