/**
 * 帳號登入
 */
function id_login() {
    var f_id  = $("input[name='f_id']").val();
    var f_pw  = $("input[name='f_pw']").val();
    
    if(f_id=='' || f_pw==''){
    	$("#id_msg").empty();
        $("#id_msg").append('Please input....');
        return;
    }
   
    $("#id_msg").empty();
    
    $.post("./ajax_server/ajax_out.server.php",{mode:"IdLogin",f_id:f_id,f_pw:f_pw},
    function(rtn_data) {
        var flag = rtn_data["flag"];
        var msg  = rtn_data["msg"];

        if ( false == flag ) {
	        $("#id_msg").empty();
	        $("#id_msg").append('<font color="red">Login Fail!</font>'); 
            $("input[name='f_id']").focus();
            $("input[name='f_id']").select();
            if(rtn_data["showCOVID"]=='Y'){
                var msg = 'Please fill in today\'s healthcare information first.';
                alert(msg);
                msg +='[<a href="https://app.pers.ncku.edu.tw/ncov/index.php?arch" target="_blank">Click here</a>]';
                $("#id_msg").empty();
	            $("#id_msg").append('<font color="red">'+msg+'</font>'); 
                window.open("https://app.pers.ncku.edu.tw/ncov/index.php?arch", "_blank");
            }
            //1100507 未測驗還是可登入
            if(rtn_data["showGender"]=='Y'){
                alert('To Improve working education and to help employee  understand the regulations of gender equality incidents reporting, please access the National Chen Kung University GE website and complete the Campus Gender Equality Training Courses as soon as possible.');
                // $("#id_msg").append('[<a href="https://app.pers.ncku.edu.tw/ncov/index.php?arch" target="_blank">點我填寫</a>]');
                window.open("https://ge.ncku.edu.tw/", "_blank");
            }
        } else {
        	$("#id_msg").empty();
	        $("#id_msg").append('Login Successful!'); 
            //1100507 未測驗還是可登入
            if(rtn_data["showGender"]=='Y'){
                alert('To Improve working education and to help employee  understand the regulations of gender equality incidents reporting, please access the National Chen Kung University GE website and complete the Campus Gender Equality Training Courses as soon as possible.');
                // $("#id_msg").append('[<a href="https://app.pers.ncku.edu.tw/ncov/index.php?arch" target="_blank">點我填寫</a>]');
                window.open("https://ge.ncku.edu.tw/", "_blank");
            }
            //window.document.location = "./menu.php";
            window.document.location = "./iftwf/default.php?lang=en";	//轉至英文版差勤
        }
    },"json");
}

$(document).ready(function() {

    /***************************************************************************
     * 確定 : 執行Login
     **************************************************************************/
    //1110921+ 密碼欄位直接用enter可登入系統(原input承接post值拿掉後不work，故加此段)
    $("#password").keydown(function(e){
        if(e.keyCode === 13){
            e.preventDefault();
            $("#login_btn").click();
        }
    });
     $("#login_btn").click(id_login);
    // 有SESSION的時候，直接登入系統
    $("#login_btn").click();

    /***************************************************************************
     * 重填：清除[帳號][密碼]
     **************************************************************************/
    $("#clear_btn").click(function(){
        $("input[@name='f_id']").val("");
        $("input[@name='f_pw']").val("");
    });
});

