Advertisement
edwardlel

Untitled

Dec 1st, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <title>Login Page</title>
  6.  
  7. </head>
  8.  
  9. <body>
  10. <h1>Enter Username and Password</h1>
  11. <div id="frm">
  12. <form action="process.php" method="post">
  13. <p>
  14. <label>Username:</label>
  15. <input type="text" id="user" name="user">
  16. </p>
  17. <p>
  18. <label>Password:</label>
  19. <input type="password" id="pass" name="pass">
  20. </p>
  21. <p>
  22. <input type="submit" id="btn" value="Login">
  23. </p>
  24. </form>
  25. </div>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement