diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-03-24 17:54:22 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-03-24 17:54:22 +0100 |
commit | 4178dcadc6a6a856a754e3a370c22fa342735e42 (patch) | |
tree | 686ff11f152eab5cace57ef55154084475ed3ce5 /src/pages/auditors.html | |
parent | df87dc0242caab05cb27623edf000625d1a7f039 (diff) |
add auditor editing
Diffstat (limited to 'src/pages/auditors.html')
-rw-r--r-- | src/pages/auditors.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/pages/auditors.html b/src/pages/auditors.html new file mode 100644 index 000000000..0a9740f03 --- /dev/null +++ b/src/pages/auditors.html @@ -0,0 +1,37 @@ +<!DOCTYPE html> +<html> + +<head> + <title>Taler Wallet: Auditors</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> + + <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> |