Guest User

Untitled

a guest
Jan 18th, 2018
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1.  
  2. <html>
  3. <head></head>
  4. <body>
  5. <div class="container">
  6.  
  7. <?php
  8. if(isset($_POST['username'])&&isset($_POST['password'])){
  9. $username = htmlentities($_POST['username']);
  10. $password = htmlentities($_POST['password']);
  11. echo("you have entered ".$username." and ".$password."<br/>");
  12. exit();
  13. }
  14. ?>
  15. <form action="eval-170840120202.php" method="post">
  16. <input type="text" name="username" placeholder="username"><br><br>
  17. <input type="password" name="password" placeholder="password"><br><br>
  18. <input type="submit" value="login">
  19. </form>
  20. </div>
  21. </body>
  22. </html>
Add Comment
Please, Sign In to add comment