diff options
author | curly <curly@infernal.garden> | 2024-07-18 12:07:12 -0600 |
---|---|---|
committer | curly <curly@infernal.garden> | 2024-07-18 12:07:12 -0600 |
commit | 22a297088b6520a90eb4f01c9286095841f5cf89 (patch) | |
tree | 83152ab6fb7dbc695fa4d72379340c2fb0ebac55 | |
parent | 25bd00c21b4e389ebdbd487f0ecec8e9f2cf9fa3 (diff) | |
download | poko_web-22a297088b6520a90eb4f01c9286095841f5cf89.tar.gz poko_web-22a297088b6520a90eb4f01c9286095841f5cf89.tar.bz2 poko_web-22a297088b6520a90eb4f01c9286095841f5cf89.zip |
make index relative
-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 { |