Bueno, el tema es que me sale muy mal diseñado.
Me lo podrian enderezar un poquito?
Gracias
Codigo HTML:
Código:
<form id="formulario" class="fValidator-form" name="formulario" method="post" action="">
<td><label for="exA_Id">Nombre<br>
</label></td>
<td><input id="exA_Id" class="fValidate['required']" name="id" type="text" />
<br>
<br></td>
<tr>
<td><label for="exA_Password">Clave:</label></td>
<td><input id="exA_Password" class="fValidate['required']" name="password" type="password" />
<br>
<br></td>
</tr>
<tr>
<td><label for="exA_cPassword">Repetir clave</label></td>
<td><input id="exA_cPassword" class="fValidate['required','=exA_Password']" name="cpassword" type="password" />
<br>
<br></td>
</tr>
<tr>
<td><label for="exA_Name">Correo Intranet</label></td>
<td><input id="exA_Name" class="fValidate['required','alpha']" name="name" type="text" />
<br></td>
</tr>
<tr>
<td>Sexo:</td>
<td>
<label for="exA_Sex_male"><br>
Hombre</label>
<input id="exA_Sex_male" name="sex" type="radio" value="male" />
<label for="exA_Sex_female">Mujer</label><input id="exA_Sex_female" class="fValidate['required']" name="sex" type="radio" value="female" />
<br>
<br>
</td>
</tr>
<tr>
<td><label for="exA_Date">Fecha de nacimiento:</label></td>
<td><input id="exA_Date" class="fValidate['date']" name="date" type="text" />
<br>
<br></td>
</tr>
<tr>
<td><label for="exA_Phone">Telefono:</label></td>
<td><input id="exA_Phone" class="fValidate['required','phone']" name="phone" type="text" />
<br>
<br></td>
</tr><tr><td> </td>
</tr>
<tr>
<td><label for="exA_Email">Email:</label></td>
<td><input id="exA_Email" class="fValidate['required','email']" name="email" type="text" />
<br>
<br></td>
</tr>
<tr>
<td><label for="exA_Url">Espacio en comunidad Marcos Paz Digital</label></td>
<td><input id="exA_Url" class="fValidate['required','url']" name="url" type="text" />
<br>
<br></td>
</tr>
<tr>
<td><label for="exA_Number">Real (float):</label></td>
<td><input id="exA_Number" class="fValidate['required','real']" name="number" type="text" /></td>
</tr>
</p>
<p>
<input type="submit" name="Submit" value="Submit" />
<input type="reset" name="Submit2" value="Reset" />
</p>
</form>