Advertisement
wingman007

JS_Validation_HTML

May 22nd, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Validation</title>
  5.         <script type="text/javascript" src="app.js"></script>
  6.     </head>
  7.     <body>
  8.     <h1>Validation</h1>
  9.     <form action="#" id="form">
  10.         <div>
  11.             <label for="name">Username</label>
  12.             <label for="password">Password</label>
  13.             <label for="submit"></label>
  14.         </div>
  15.         <div id="input">
  16.             <input type="text" name="name" placeholder="Enter youname"/>
  17.             <input type="password" name="password" placeholder="Password"/>
  18.             <input type="submit" name="Submit" value="Submit" />
  19.         </div>
  20.     </form>
  21.     </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement