diff options
| author | Florian Dold <florian.dold@gmail.com> | 2017-05-01 04:05:16 +0200 |
|---|---|---|
| committer | Florian Dold <florian.dold@gmail.com> | 2017-05-01 04:05:16 +0200 |
| commit | 4c03a1200eb947a0ed13f78b46fd670601b8cb80 (patch) | |
| tree | 16c64421a72000ab19f939ffe492519b013fbafc /src/pages/payback.html | |
| parent | bb6d8317a5ff672fccdb0a35e55077521827a48d (diff) | |
implement payback (with rudimentary UI)
Diffstat (limited to 'src/pages/payback.html')
| -rw-r--r-- | src/pages/payback.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/pages/payback.html b/src/pages/payback.html new file mode 100644 index 000000000..d7b913eec --- /dev/null +++ b/src/pages/payback.html @@ -0,0 +1,37 @@ +<!DOCTYPE html> +<html> + +<head> + <meta charset="UTF-8"> + <title>Taler Wallet: Payback</title> + + <link rel="stylesheet" type="text/css" href="../style/lang.css"> + <link rel="stylesheet" type="text/css" href="../style/wallet.css"> + + <link rel="icon" href="/img/icon.png"> + + <script src="/dist/page-common-bundle.js"></script> + <script src="/dist/payback-bundle.js"></script> + + <style> + body { + font-size: 100%; + } + .tree-item { + margin: 2em; + border-radius: 5px; + border: 1px solid gray; + padding: 1em; + } + .button-linky { + background: none; + color: black; + text-decoration: underline; + border: none; + } + </style> + + <body> + <div id="container"></div> + </body> +</html> |
