Advertisement
Guest User

Untitled

a guest
Dec 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Login Page</title>
  4. </head>
  5.  
  6. <body>
  7. <!-- Output error message if any -->
  8. <?php echo $error; ?>
  9.  
  10. <!-- form for login -->
  11. <form method="post" action="login.php">
  12. <label for="username">Username:</label><br/>
  13. <input type="text" name="username" id="username"><br/>
  14. <label for="password">Password:</label><br/>
  15. <input type="password" name="password" id="password"><br/>
  16. <input type="submit" value="Log In!">
  17. </form>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement