Guest User

Untitled

a guest
Jan 12th, 2018
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Checks if inputted details match those stored in the database
  2. function isValidUser() {
  3.     var username = document.getElementById("txtUsername").value
  4.     var password = document.getElementById("txtPassword").value
  5.     if(username === "admin" && password === "password") {
  6.                     var result = true;
  7.                 }
  8.                 if(result) {
  9.                 //Go to enrol police web page
  10.                 window.location.href = "../EnrolPoliceOfficers/EnrolPoliceOfficers.html";
  11.                
  12.                 } else {
  13.                     alert("Invalid username or password")
  14.                 }
  15. }
Add Comment
Please, Sign In to add comment