Advertisement
Guest User

login.php

a guest
Dec 28th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 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.  
  9. <div id="frm">
  10.  
  11. <form action="process.php" method="POST">
  12. <p>
  13. <label>Username:</label>
  14. <input type="text" id="user" name="user" />
  15. </p>
  16.  
  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.  
  26. </div>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement