Advertisement
Guest User

Untitled

a guest
May 7th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
  4. </script>
  5.  
  6. <script>
  7.  
  8. $( document ).ready(function() {
  9. console.log( "ready!" );
  10. });
  11.  
  12. </script>
  13. </head>
  14. <body>
  15. <div id="cregistered">1</div>
  16.  
  17. <button type="button" id="register">Register</button>
  18.  
  19. <div id="form" style="display:none">
  20. <form>
  21. Username:<br>
  22. <input type="text" name="username"><br>
  23. Password:<br>
  24. <input type="text" name="password"><br>
  25. Country:<br>
  26. <input type="text" name="country">
  27. </form>
  28. </div>
  29.  
  30.  
  31. <button type="button" id="loginButton">Login </button>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement