Guest User

Untitled

a guest
May 31st, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <form method="POST" action="http://">
  2. Username: <input type="text" name="username" size="15" />
  3. Password: <input type="password" name="password" size="15" />
  4. <input type="submit" value="Login" />
  5. </div>
  6. </form>
  7.  
  8. <input type='text' name='username' size='15' placeholder='User name' />
  9.  
  10. <form method="POST" action="http://">
  11. <label for="username">Username:</label>
  12. <input placeholder="Username" id="username" name="username" size="15">
  13. <label for="password">Password:</label>
  14. <input placeholder="Password" type="password" id="password" name="password" size="15">
  15. <input type="submit" value="Login">
  16. </form>
  17.  
  18. form {
  19. position:relative;
  20. }
  21. label {
  22. position:absolute;
  23. top:-9999px;
  24. }
  25.  
  26. $('#signup_job_title').formvaluelabel({text:'eg. Graphic Artist'});
  27.  
  28. <label for="username">Username:<label>
  29. <input type="text" id="username" name="username" placeholder="Enter your username" size="15" />
Add Comment
Please, Sign In to add comment