Advertisement
Guest User

login.php

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