fork download
  1. <html>
  2. <head>
  3. <meta charset = 'utf-8'>
  4. <title>
  5. Ня
  6. </title>
  7. </head>
  8. <body>
  9. <script>
  10. var name = prompt('Введите ваше имя', '');
  11. if (name == 'Админ'){
  12. var pass = prompt('Введите пароль', '');
  13. if (pass == 'ня') {
  14. alert('Welcome');
  15. }
  16. else if (pass == null) {
  17. alert('Вход отменен');
  18. } else {
  19. alert('Password isnt correct');
  20. }
  21. } else if (name == null) {
  22. alert('Вход отменен');
  23. } else {
  24. alert('Я вас не знаю');
  25. }
  26. </script>
  27. </body>
  28. </html>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
<html>
	<head>
		<meta charset = 'utf-8'>
		<title>
		Ня
		</title>
	</head>
	<body>
		<script>
		var name = prompt('Введите ваше имя', '');
		if (name == 'Админ'){
			var pass = prompt('Введите пароль', '');
			if (pass == 'ня') {
				alert('Welcome');
			}
			else if (pass == null) {
				alert('Вход отменен');
			} else {
				alert('Password isnt correct');
			}
		} else if (name == null) {
			alert('Вход отменен');
		} else {
			alert('Я вас не знаю');
		}
		</script>
	</body>	
</html>