Advertisement
Guest User

Untitled

a guest
May 30th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Login</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  5. </head>
  6. <body>
  7. <?php if($_POST['submit'])
  8. {
  9. header('Location: index.php');
  10. }?>
  11. <form method="post">
  12. Username: <input type="text" name="username"></input><br>
  13. Password: <input type="password" name="password"></input><br>
  14. <input type="submit" name="submit" value="Login"></input>
  15. </form>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement