Advertisement
andresdiaz

Untitled

Feb 5th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. To change this license header, choose License Headers in Project Properties.
  4. To change this template file, choose Tools | Templates
  5. and open the template in the editor.
  6. -->
  7. <html>
  8. <head>
  9. <title>Mi formulario</title>
  10. <meta charset="UTF-8">
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <script type="text/javascript" src="js/Mijs.js"></script>
  13. </head>
  14. <body>
  15. <form name="miFormulario" onsubmit="return comprobardatos()">
  16. <label>Nombre</label><br>
  17. <input type="text" value="" name="txtusuario" onclick="restaurard()" /><br>
  18. <br>
  19. <label>Password</label><br>
  20. <input type="password" name="txtpassword" value="" onclick="restaurard()"/><br>
  21. <br>
  22. <label>Verificar</label><br>
  23. <input type="password" name="txtverificar" value="" onclick="restaurard()" /><br>
  24. <br>
  25. <label>Telefono</label><br>
  26. <input type="text" name="txttelefono" value="" onclick="restaurard()" /><br>
  27. <br>
  28. <label>Celular</label><br>
  29. <input type="text" name="txtcel" value="" onclick="restaurard()" /><br>
  30. <br>
  31.  
  32. <input type="submit" value="Ingresar">
  33. <h3 id="aviso"></h3>
  34.  
  35.  
  36. </form>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement