不知道這是否可能,我是js的新手,請記住這一點。 我想在我的小表格中有多個密碼和多個用戶名。 javascript代碼爲:多用戶和密碼javascript登錄
var attempt = 3;
function validate(){
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
if (username == "root" && password == "root"){ // here is password and username
sweetAlert ("Login successfully");
window.location = "success.html";
return false;
}
else{
attempt --;// Decrementing by one.
sweetAlert("You have "+attempt+" attempt(s) left.");
// Disabling fields after 3 attempts.
if(attempt == 0){
sweetAlert("Oops...", "You have failed to log in 3 times, Fields have been turned off. Please try again later", "error");
document.getElementById("username").disabled = true;
document.getElementById("password").disabled = true;
document.getElementById("submit").disabled = true;
return false;
}
}
你知道這是非常差的安全性?任何人都可以閱讀您的JS代碼,即使在您的製作網站上。即使你的代碼被縮小了,人們仍然可以從代碼中讀取你的用戶名和密碼。 – Thijs
這不是安全。 Bin it –
是的,我完全意識到這一點,它只是在那裏阻止「普通」人員因未完成的頁面而感到困惑。 –