-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
18 lines (17 loc) · 846 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
document.getElementById("login-submit").addEventListener("click", function () {
const email = document.getElementById("user-email").value;
const password = document.getElementById("user-pass").value;
if (email === "ras@gmail.com" && password === "rashedul") {
window.location.href = "banking.html";
document.getElementById("warnings").innerText = "success";
} else if (email === "programming@gmail.com" && password === "programming") {
window.location.href = "banking.html";
document.getElementById("warnings").innerText = "success";
} else if (email === "rashedul360rs@gmail.com" && password === "rashedul") {
window.location.href = "banking.html";
document.getElementById("warnings").innerText = "success";
} else {
document.getElementById("warning").innerText = "invalid input";
}
});
//banking page