Advertisement
Guest User

Untitled

a guest
Feb 24th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <html>
  2. <title>Guess the number</title>
  3. <head>
  4. <SCRIPT LANGUAGE = "JavaScript">
  5. var username = window.prompt('Please insert your username', 'Zac');
  6. var password = window.prompt('Ok ' + username + ' please insert your password', '');
  7. if(username != 'Zac' && username != 'zac')
  8. {
  9. alert('Sorry that username cannot be found!, please try again');
  10. username = window.prompt('Please insert your username', 'Zac');
  11. password = window.prompt('Ok ' + username + ' please insert your password', '');
  12. }
  13. while(password != 'Mone50')
  14. {
  15. alert('Sorry that password isn\'t right, please try again');
  16. username = window.prompt('Please insert your username', 'Zac');
  17. password = window.prompt('Ok ' + username + ' please insert your password', '');
  18.  
  19. }
  20. document.write('Welcome ' + username + ' you now have access');
  21. </script>
  22. </head>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement