Если человек признает что он глуп - значит он не глуп
Вот непричесанный код без валидации и т.п.
фрейм:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<form method="post" action="https://passport.yandex.ru/for/YourDomain.ru?mode=auth">
<input type="text" name="login" value="1" tabindex="1"/>
<input type="hidden" name="retpath" value="http://mail.yandex.ru/for/YourDomain.ru">
<input type="password" name="passwd" value="" maxlength="100" tabindex="2"/> <br>
</form>
</body>
</html>
авторизация:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script>
window.onload = function(e) {
document.getElementById('auth').onsubmit = function(e) {
frames[0].document.forms[0].login.value =
document.forms[0].login.value;
frames[0].document.forms[0].passwd.value =
document.forms[0].passwd.value;
frames[0].document.forms[0].submit();
}
}
</script>
</head>
<body>
<form id="auth" method="post" action="/auth">
<div class="label">Логин:</div>
<input type="text" name="login" value="" tabindex="1"/>
<div class="label">Пароль:</div>
<input type="password" name="passwd" value="" maxlength="100" tabindex="2"/> <br>
<input type="submit" name="In" value="Войти" tabindex="5"/>
</form>
<iframe src="frame.html">
Фиг вам а не авторизация в яндексе
</iframe>
</body>
</html>