
var Password = "letmeinnow";

function callLogin(formValue,page){
    if(Password == formValue){
        document.location = page+".html"
    }else{
        document.getElementById('fejltext').innerText = "! incorrect password, please try again"
    }
    
}
