aqui:
<form action="login.php" method="post" target="_top">
tienes que poner la ruta al archivo login.php correctamente, por ejemplo si tu archivo login.php esta en la carpeta foros la ruta seria asi:
<form action="foros/login.php" method="post" target="_top">
de todas formas hay una forma mejor.... esto es lo que tengo yo, pero tienes que adecuarlo a tu estilo y tal... no me apetece dejar limpio el codigo, soy un vagueras jejeje
Código PHP:
<? if ($userdata['user_id']!=-1)
{
if ( $userdata['user_new_privmsg'] ) {
$l_message_new = ( $userdata['user_new_privmsg'] == 1 ) ? $lang['New_pm'] : $lang['New_pms'];
$l_privmsgs_text = sprintf($l_message_new, $userdata['user_new_privmsg']);
} else {
$l_privmsgs_text = $lang['No_new_pm'];
}
echo "Bienvenido <b>" . $userdata['username'] . "</b>.";
echo "<div align='left'><p><a href='" . $phpbb_root_path . "profile.php?mode=editprofile'><img src='http://www.mindpanic.com/foros/templates/chunkstyle/imagesnew/btns/header_profile.gif' width='14' height='14' border='0' alt='Perfil' hspace='3' />Perfil</a></p>";
echo "<p><a href='" . $phpbb_root_path . "privmsg.php?folder=inbox'><img src='http://www.mindpanic.com/foros/templates/chunkstyle/imagesnew/btns/header_pmold.gif' width='14' height='14' border='0' alt='Mensajes privados' hspace='3'>" . $l_privmsgs_text . "</a></p>";
echo '<p><a href='. $phpbb_root_path.'login.'.$phpEx.'?logout=true&sid=' . $userdata['session_id'].'&redirect='.$volver.' class=mainmenu><img src="http://www.mindpanic.com/foros/templates/chunkstyle/imagesnew/btns/header_loginoff.gif" width="14" height="14" alt="Salir" border="0" hspace="3">Salir</a></p></div>';
} else {
?>
<form method="post" action="http://www.mindpanic.com/foros/login.php">
<p>Usuario:<input type="hidden" name="redirect" value="../index.php"><input class="singline" type="text" name="username" size="10">
<br />
Clave: <input class="singline" type="password" name="password" size="10" maxlength="32">
<br />
Recordarme:<input type="checkbox" name="autologin" checked="checked">
<br />
<input type="submit" class="button" name="login" value="Login"></p>
<p><a href="http://www.mindpanic.com/foros/profile.php?mode=register">¿Aún no estás registrado?</a>
<br />
<a href="http://www.mindpanic.com/foros/profile.php?mode=sendpassword">[Olvidé mi Clave]</a></p>
</form><? } ?>
mmm pon todo a tu gusto... veras como funciona en mi web.