Advertisement
Guest User

Untitled

a guest
Sep 11th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6.  
  7. <!-- use local jqeury if google CDN down -->
  8. <script>window.jQuery || document.write(
  9. '<script src="jquery.js"><\/script>')
  10. </script>
  11. <script type="text/javascript" src="jquery-ui.js"></script>
  12.  
  13. <script type="text/javascript" src="jquery-ui-1.10.3.custom.js"></script>
  14.  
  15. <script type="text/javascript" src="validation.js"></script>
  16.  
  17. <link type="text/css" href="style.css" rel="stylesheet" />
  18.  
  19. </head>
  20. </head>
  21. <body>
  22.  
  23. <div id="container">
  24.  
  25. <form id="customForm">
  26.  
  27. <div>
  28. <label for="name">Name</label>
  29. <input type="text" id="name" name="name" />
  30. <span id="nameInfo">Whats your name?</span>
  31. </div>
  32.  
  33. <div>
  34. <label for="email">Email</label>
  35. <input type="text" id="email" name="email" />
  36. <span id="emailInfo">Type a valid email..</span>
  37. </div>
  38.  
  39. <div>
  40. <label for="pass1">Password</label>
  41. <input type="password" id="pass1" name="pass1" />
  42. <span id="pass1Info">Type a password with more than 5 character</span>
  43. </div>
  44.  
  45. <div>
  46. <label for="pass2">Confirm Password</label>
  47. <input type="password" id="pass2" name="pass2" />
  48. <span id="pass2Info">Type password again</span>
  49. </div>
  50.  
  51. <div>
  52. <input type="button" id="send" name="send" value="Send" />
  53. </div>
  54.  
  55. </form>
  56.  
  57. </div>
  58.  
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement