Advertisement
Guest User

Untitled

a guest
Nov 9th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="utf8">
  4. <title>CubexDE.net - Login</title>
  5. </head>
  6. <body>
  7. <p><center>Bitte logge dich ein!</p></center>
  8. <script type="text/javascript">
  9. var username;
  10. var password;
  11.  
  12. username = prompt("Gib deinen Benutzernamen ein:");
  13. password = prompt("Gib dein Kennwort ein:");
  14.  
  15. if(username == "Kai" && password == "123456789")
  16. {
  17. window.location = "http://CubexDE.net";
  18. }
  19. if(username == "Bmbo" && password == "123456789")
  20. {
  21. window.location = "http://bestedoma.in";
  22. }
  23. else
  24. {
  25. window.location.reload(true)
  26. }
  27. </script>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement