diff --git a/html/inc/secure.php b/html/inc/secure.php index 7e1b91a..651b794 100644 --- a/html/inc/secure.php +++ b/html/inc/secure.php @@ -8,7 +8,8 @@ if( isset($_GET['action']) && $_GET['action']=='logout' ) { unset( $_SESSION['username'] ); - include_once "index.php"; + //include_once "index.php"; + header("Location: index.php"); exit; } diff --git a/html/js/main.js b/html/js/main.js index 36c4717..d4a22a1 100644 --- a/html/js/main.js +++ b/html/js/main.js @@ -257,7 +257,6 @@ return; } - let elem = document.getElementById('page_content'); [ page_type, elem.innerHTML ] = data[1]; console.log('navigate_page page_type: ', page_type); @@ -428,8 +427,12 @@ * Collect data from login form */ async function set_btn_login( map_params ){ - + let raw_pwd = document.getElementById('login_pwd').value; + + console.log("pwd = "+raw_pwd); + console.log("nonce = " + g_svr_nonce); + const pwd_hash = await getHash256(raw_pwd+g_svr_nonce); map_params.set( 'username', document.getElementById('login_name').value ); map_params.set( 'password', pwd_hash );