Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/07/2007, 04:58
Avatar de Deux_macca
Deux_macca
 
Fecha de Ingreso: mayo-2006
Mensajes: 28
Antigüedad: 17 años, 11 meses
Puntos: 0
Re: Problemas con formularios en IE

Código PHP:
<style type="text/css">
<!--
body,td,th {
    
font-familyGenevaArialHelveticasans-serif;
    
font-size10px;
}
body {
    
margin-left0px;
    
margin-top0px;
    
margin-right0px;
    
margin-bottom0px;
    
background-color#333333;
}
{
    
font-familyGenevaArialHelveticasans-serif;
    
font-size10px;
    
color#000000;
}
a:link {
    
text-decorationnone;
}
a:visited {
    
text-decorationnone;
    
color#000000;
}
a:hover {
    
text-decorationunderline;
    
color#739DB6;
}
a:active {
    
text-decorationnone;
    
color#000000;
}
.
style1 {
    
font-size14px;
    
font-weightbold;
}
-->
</
style
Y el form:

Código PHP:
<form action="Index.php?neosparty=aut_verifica.inc" method="post">
                  <tr>
                    <td width="13" rowspan="5">&nbsp;</td>
                    <td colspan="2">&nbsp;</td>
                  </tr>
                  <tr>
                    <td width="157">
                        <div align="left">
                          Usuario:                                
                         </div>
                    </td>
                    <td width="30"><input name="user" type="text" size="20"></td>
                  </tr>
                  <tr>
                    <td>Contrase&ntilde;a:                      
                    </td>
                    <td><input name="pass" type="password" size="20"></td>
                  </tr>
                  <tr>
                    <td colspan="2">
                    <div align="center">
                    <?php
                        
include ("aut_mensaje_error.inc.php");
                          
// Mostrar error de Autentificación.
                          
if (isset($_GET['error_login'])){
                              
$error=$_GET['error_login'];
                          echo 
"<font face='Verdana, Arial, Helvetica, sans-serif' size='1' color='#FF0000'>Error:$error_login_ms[$error]";
                          }
                    
?>
                      <br>
                      <input type=submit name=Submit value="Entrar">
                    </div></td>
                  </tr>
                  <tr>
                    <td colspan="2"><strong><br>
                      <img src="images/sp.jpg" width="35" height="10"> </strong><a href="Index.php?neosparty=registro"> Registrarse</a><br>
                    <strong><img src="images/sp.jpg" width="35" height="10"><a href="Index.php?neosparty=recordar"> Recordar contrase&ntilde;a</a></strong></td>
                  </tr>
                  </form>
El formulairo esta introducido mediante un include.
Thx.