Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <center>
  6. <table border="1">
  7. <tr>
  8. <td><center><h2>Registro de jugadores de "Hundir la Flota"</h2><center></td>
  9. </tr>
  10. <tr>
  11. <td>
  12. <table style="width:100%">
  13. <form name="input" action="javascript:alert('No esta habilitado')" method="get">
  14. <tr><td>Nombre(*):</td><td><input type="text" name="nombre" required></td></tr>
  15. <tr><td>Primer apellido(*):</td><td><input type="text" name="apellido" required></td></tr>
  16. <tr><td>Segundo apellido:</td><td><input type="text" name="apellido2"></td></tr>
  17. <tr><td>DNI(*):</td><td><input type="text" name="DNI" required></td></tr>
  18. <tr><td>Email:</td><td><input type="email" name="email"></td></tr>
  19. <tr><td>Tipo de pago(*):</td><td>
  20. <input type="radio" name="pago" value="Contrarreembolso" checked="checked">Contrarreembolso
  21. <input type="radio" name="pago" value="Tarjeta Visa">Tarjeta Visa
  22. <input type="radio" name="pago" value="Cheque">Cheque
  23. </td></tr>
  24. <tr><td>Constraseña(*):</td><td><input type="password" name="contraseña" onchange="form.contraseña2.pattern = this.value;" required></td></tr>
  25. <tr><td>Repetir constraseña(*):</td><td><input type="password" name="contraseña2" required></td></tr>
  26.  
  27. <td><input type="submit" value="Enviar Datos" style="display: block;margin:auto;"></td>
  28. <td><input type="reset" value="Borrar Datos" style="display: block;margin:auto;"></td>
  29.  
  30. </form>
  31. </table>
  32.  
  33. </td>
  34. </tr>
  35. <tr>
  36. <td>(*)Los campos con asterisco son obligatorios.</td>
  37. </tr>
  38. </table>
  39. </center>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement