Advertisement
Guest User

Untitled

a guest
Feb 12th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function validate(){
  2. var username = document.getElementById("username").value;
  3. var password = document.getElementById("password").value;
  4.  
  5.  
  6.  
  7.  
  8. if ( username == "admin" && password == "admin"){
  9.  
  10. window.location.href= "operatore.html"; // Redirecting to other page.
  11. return false;
  12. }
  13. else{
  14. alert("Username/Password errati");
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement