Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. function Passcheck(){
  2. Password = document.getElementById("Eingabe").value;
  3. Password = Password * 3;
  4. Password = Password * 24;
  5. if(Password == 1513584072)
  6. {
  7. var Pass = true;
  8. }else var Pass = false;
  9.  
  10.  
  11. if(Pass == false)
  12. {
  13.  
  14.  
  15. if(Try == 2 && Emails == 0)
  16. {
  17. Emails = 1;
  18. setCookie("Emails", Emails, 4);
  19. httpGet();
  20. }
  21. Try = Try + 1;
  22. setCookie("Tries", Try, 4);
  23. var oof = 3 - Try;
  24. alert( "Sie haben noch " + oof + " Versuche.");
  25. Gesperrt();
  26. }
  27.  
  28. else if(Pass == true)
  29. {
  30. document.body.innerHTML = "Es hat funktioniert das Passwort ist valide." ;
  31. }
  32.  
  33.  
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement