Сообщение от kuzkuz
|
Все правильно?
|
Нет.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=Windows-1251"
http-equiv="content-type">
<title>1</title>
<style>
div#h
{
position: absolute;
visibility: hidden;
}
</style>
</head>
<body>
<div id="h">
<img style="width: 38px; height: 38px;" alt="" src="http://javascript.ru/forum/images/smilies/victory.gif">
</div>
<script>
var value = prompt('Логин?', '');
if ( value == '123' ) {
var pass = prompt('Введите пароль', '');
if ( pass == '123' ) {
document.getElementById('h').style.visibility = 'visible';
} else {
alert('Пароль неверен');
}
} else if ( value === null ) { // Cancel
alert('Вход отменен');
} else {
alert('Неправильный логин');
}
</script>
</body>
</html>