diff --git a/html/js/main.js b/html/js/main.js
index cd576a9..36c4717 100644
--- a/html/js/main.js
+++ b/html/js/main.js
@@ -428,7 +428,7 @@
* Collect data from login form
*/
async function set_btn_login( map_params ){
-
+
let raw_pwd = document.getElementById('login_pwd').value;
const pwd_hash = await getHash256(raw_pwd+g_svr_nonce);
map_params.set( 'username', document.getElementById('login_name').value );
diff --git a/notes.txt b/notes.txt
index 5ee3f2b..4080ef5 100644
--- a/notes.txt
+++ b/notes.txt
@@ -22,3 +22,14 @@
then enable it
systemctl enable bu_cmdr.service
+Handy:
+ https://sqlite.org/cli.html
+
+reset the running flag:
+
+[root@server2 svc]# sqlite3 ../data/data.db
+update BULIST set BuRunning=false;
+.quit
+
+
+