summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcurly <curly@infernal.garden>2024-07-18 12:07:12 -0600
committercurly <curly@infernal.garden>2024-07-18 12:07:12 -0600
commit22a297088b6520a90eb4f01c9286095841f5cf89 (patch)
tree83152ab6fb7dbc695fa4d72379340c2fb0ebac55 /src
parent25bd00c21b4e389ebdbd487f0ecec8e9f2cf9fa3 (diff)
downloadpoko_web-22a297088b6520a90eb4f01c9286095841f5cf89.tar.gz
poko_web-22a297088b6520a90eb4f01c9286095841f5cf89.tar.bz2
poko_web-22a297088b6520a90eb4f01c9286095841f5cf89.zip
make index relative
Diffstat (limited to 'src')
-rw-r--r--src/index.html6
-rw-r--r--src/main.js2
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 {