summary refs log tree commit diff
path: root/pages/login
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2024-11-30 20:15:09 +0200
committerWlodekM <[email protected]>2024-11-30 20:15:09 +0200
commitdb84220e2bc60b637cc5736c556e2c0bc34d6ae3 (patch)
treea8d89084f320d5f84343cb9da1b1d0c93dd9e1e9 /pages/login
parentec81523b3933135463defba924245d78026d7ec0 (diff)
use less, topbar (wip) also warkdown
Diffstat (limited to 'pages/login')
-rw-r--r--pages/login/page.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/pages/login/page.js b/pages/login/page.js
index f0c5994..dcc6f20 100644
--- a/pages/login/page.js
+++ b/pages/login/page.js
@@ -8,6 +8,7 @@ export function onload() {
         ev.preventDefault();
         const username = document.getElementById('username').value;
         const password = document.getElementById('password').value;
+        document.getElementById('topbar').classList.remove('hidden')
         try {
             await stores.sdlib.login(username, password)
         } catch (error) {