Guest User

Untitled

a guest
Feb 15th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Login</title>
  5. </head>
  6. <body style="background-color:#68eff1;">
  7.  
  8. <div id="info"></div>
  9. <script type="text/javascript">
  10.  
  11. var user=document.form1.user.value;
  12. var pass=document.form1.password.value;
  13.  
  14. var datosJSON = '{"usuario" : "user", "contraseña" : "pass"}';
  15.  
  16. function mostrar(datos.JSON){
  17. document.write(datos.JSON.usuario);
  18. document.write(datos.JSON.contraseña);
  19. };
  20.  
  21. </script>
  22. <form name="form1">
  23. <P>User: <INPUT type=text name=user placeholder="User">
  24. <P>Password: <INPUT type=text name=password placeholder="Password">
  25. <P>
  26. <input type="button" name="miboton" id="boton" value="Enviar" onClick="mostrar(datos.JSON)" />
  27. </form>
  28. </body>
  29. </html>
Add Comment
Please, Sign In to add comment