summaryrefslogtreecommitdiffhomepage
path: root/html/webbox.js
diff options
context:
space:
mode:
authorRoland Stigge <stigge@antcom.de>2018-02-12 18:51:41 +0100
committerRoland Stigge <stigge@antcom.de>2018-02-12 18:51:41 +0100
commit5d54b83e1b9a74489970855e42d27691b471d900 (patch)
treec1a0b5235d6e194b0b25d94d96919df47815fe02 /html/webbox.js
parent8b5da54e7df46a8cc54b6e448b94048ccd2b8df8 (diff)
Logout function only if logged in
Diffstat (limited to 'html/webbox.js')
-rw-r--r--html/webbox.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/html/webbox.js b/html/webbox.js
index a564859..17ec25a 100644
--- a/html/webbox.js
+++ b/html/webbox.js
@@ -306,6 +306,10 @@ function initMainpage() {
if (authheader.startsWith("SR_Basic realm=\"") && authheader.endsWith("\"")) {
title = authheader.substr(16, authheader.length - 17);
}
+
+ // enable logout function if logging in
+ document.getElementById("logoutcommand").style.display = "table-row";
+
login(title);
return;
} else