Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function clicked()(
  2.     var user = document.getElementById('username');
  3.     var pass = document.getElementById('pass');
  4.  
  5.     var coruser = "test";
  6.     var corpass = "123";
  7.    
  8.     if(user.value == coruser){
  9.        if(pass.value == corpass){
  10.           window.alert("Jesteś zalogowany jako " + user.value);
  11.           window.open("Moje_konto_pr.html");
  12.        }else{
  13.           window.alert("Niepoprawny login lub hasło!");
  14.        }else{
  15.           window.alert("Niepoprawny login lub hasło!");
  16.        }
  17.     }
  18.  
  19. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement