Advertisement
Guest User

Untitled

a guest
Mar 13th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link href="form.css" rel="stylesheet" type="text/css">
  5. <title></title>
  6. </head>
  7. <body>
  8.  
  9. <div id="container">
  10. <form name="my-form" acton="#" method="post" onsubmit="return SubmitUser()">
  11. <label for="username">Username:</label>
  12. <input type="text" id="username" name="username" placeholder="username">
  13. <div id="username-error"></div>
  14. <label for="password">Password:</label>
  15. <input type="password" id="password" name="password" placeholder="password">
  16. <div id="password-error"></div
  17. <div id="lower">
  18. <input type="submit" value="Login">
  19. </div>
  20. </form>
  21.  
  22. <table id="users-data">
  23. <thead>
  24. <tr>
  25. <td>Username</td>
  26. <td>Password</td>
  27. </tr>
  28. </thead>
  29. <tbody>
  30.  
  31. </tbody>
  32. </table>
  33.  
  34. <script src="form.js"></script>
  35.  
  36.  
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement