Advertisement
Guest User

login.php

a guest
Apr 6th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Login</title>
  5. <link rel="stylesheet" type="text/css" href=style.css>
  6. </head>
  7. <body>
  8. <div id="frm">
  9. <form action="process.php" method="POST">
  10. <p>
  11. <label>Username:</label>
  12. <input type="text" id="user" name="user" />
  13. </p>
  14. <p>
  15. <label>Password:</label>
  16. <input type="password" id="pass" name="pass" />
  17. </p>
  18. <p>
  19. <input type="submit" id="btn" name="Login" />
  20. </p>
  21.  
  22.  
  23.  
  24. </form>
  25.  
  26.  
  27. </div>
  28.  
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement