Advertisement
Guest User

Untitled

a guest
Mar 31st, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <head>
  2. <script>
  3. function ----() {
  4. var username = prompt("Please enter your username.");
  5. if (username.toLowerCase() == "-----"){
  6. var password = prompt("Please enter your password.");
  7. if (password.toLowerCase() == "-----"){
  8. window.open('http://example.com',"_self")
  9. }
  10. else{
  11. alert('Incorrect password. Please try again.')
  12. }
  13. }
  14. else{
  15. alert('Incorrect username. Please try again.')
  16. }
  17. }
  18. </script>
  19. </head>
  20.  
  21. <body>
  22. <p><a onclick="----()" href="javascript:void(0);">------</a></p>
  23. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement