diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-03-28 09:47:22 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-03-28 09:47:43 +0200 |
commit | e8bec33231a620579ccd1acd30824fd6c3a13dc2 (patch) | |
tree | 0bf17284382e55a29d83e5967d1243b19574d395 /src/pages/add-auditor.html | |
parent | 2a1ece8417df48c4aac54851397e2f0ee87b9f06 (diff) |
add auditor editing
Diffstat (limited to 'src/pages/add-auditor.html')
-rw-r--r-- | src/pages/add-auditor.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/pages/add-auditor.html b/src/pages/add-auditor.html new file mode 100644 index 000000000..7966e211f --- /dev/null +++ b/src/pages/add-auditor.html @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html> + +<head> + <title>Taler Wallet: Add Auditor</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="/src/vendor/URI.js"></script> + <script src="/src/vendor/react.js"></script> + <script src="/src/vendor/react-dom.js"></script> + + <script src="/src/vendor/system-csp-production.src.js"></script> + <script src="/src/moduleTrampoline.js"></script> + + <link rel="stylesheet" type="text/css" href="/src/style/pure.css"> + <link rel="stylesheet" type="text/css" href="/src/style/wallet.css"> + + <style> + .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> |