diff options
-rw-r--r-- | src/index.html | 6 | ||||
-rw-r--r-- | src/main.js | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/index.html b/src/index.html index cadf558..971b114 100644 --- a/src/index.html +++ b/src/index.html @@ -9,13 +9,13 @@ </head> <body> <header> - <a href="/"> + <a href=""> <center class="button navbutton">HOME</center> </a> - <a href="/login/"> + <a href="login/"> <center class="button navbutton">LOGIN</center> </a> - <a href="/register/"> + <a href="register/"> <center class="button navbutton">REGISTER</center> </a> </header> diff --git a/src/main.js b/src/main.js index 91e2efb..1ac45db 100644 --- a/src/main.js +++ b/src/main.js @@ -1,6 +1,6 @@ const server = window.location.protocol + "//" + window.location.hostname + ":9050"; const host = document.getElementsByTagName("base")[0].href; -const client_id = "POKO Web 0.1.0"; +const client_id = "POKO Web 0.1.1"; async function xhttp_get(url) { try { |