Advertisement
Guest User

Untitled

a guest
Jun 6th, 2012
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.64 KB | None | 0 0
  1. <?php
  2. /**
  3. * WordPress User Page
  4. *
  5. * Handles authentication, registering, resetting passwords, forgot password,
  6. * and other user handling.
  7. *
  8. * @package WordPress
  9. */
  10.  
  11. /** Make sure that the WordPress bootstrap has run before continuing. */
  12. require( dirname(__FILE__) . '/wp-load.php' );
  13.  
  14. // Redirect to https login if forced to use SSL
  15. if ( force_ssl_admin() && !is_ssl() ) {
  16. if ( 0 === strpos($_SERVER['REQUEST_URI'], 'http') ) {
  17. wp_redirect(preg_replace('|^http://|', 'https://', $_SERVER['REQUEST_URI']));
  18. exit();
  19. } else {
  20. wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
  21. exit();
  22. }
  23. }
  24.  
  25. /**
  26. * Outputs the header for the login page.
  27. *
  28. * @uses do_action() Calls the 'login_head' for outputting HTML in the Log In
  29. * header.
  30. * @uses apply_filters() Calls 'login_headerurl' for the top login link.
  31. * @uses apply_filters() Calls 'login_headertitle' for the top login title.
  32. * @uses apply_filters() Calls 'login_message' on the message to display in the
  33. * header.
  34. * @uses $error The error global, which is checked for displaying errors.
  35. *
  36. * @param string $title Optional. WordPress Log In Page title to display in
  37. * <title/> element.
  38. * @param string $message Optional. Message to display in header.
  39. * @param WP_Error $wp_error Optional. WordPress Error Object
  40. */
  41. function login_header($title = 'Log In', $message = '', $wp_error = '') {
  42. global $error, $is_iphone, $interim_login, $current_site;
  43.  
  44. // Don't index any of these forms
  45. add_action( 'login_head', 'wp_no_robots' );
  46.  
  47. if ( empty($wp_error) )
  48. $wp_error = new WP_Error();
  49.  
  50. // Shake it!
  51. $shake_error_codes = array( 'empty_password', 'empty_email', 'invalid_email', 'invalidcombo', 'empty_username', 'invalid_username', 'incorrect_password' );
  52. $shake_error_codes = apply_filters( 'shake_error_codes', $shake_error_codes );
  53.  
  54. if ( $shake_error_codes && $wp_error->get_error_code() && in_array( $wp_error->get_error_code(), $shake_error_codes ) )
  55. add_action( 'login_head', 'wp_shake_js', 12 ); ?><!DOCTYPE html>
  56. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>="">
  57.  
  58. <head>
  59. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  60. <title><?php bloginfo('name'); ?>› <?php echo $title; ?></title>
  61. <?php
  62. wp_admin_css( 'wp-admin', true );
  63. wp_admin_css( 'colors-fresh', true );
  64.  
  65. if ( $is_iphone ) { ?><meta name="viewport" content="width=320; initial-scale=0.9; maximum-scale=1.0; user-scalable=0;" />
  66. <style type="text/css" media="screen">
  67. .login form, .login .message, #login_error {
  68. margin-left: 0px;
  69. }
  70. .login #nav, .login #backtoblog {
  71. margin-left: 8px;
  72. }
  73. .login h1 a {
  74. width: auto;
  75. }
  76. #login {
  77. padding: 20px 0;
  78. }
  79. </style>
  80. <?php
  81. }
  82. do_action( 'login_enqueue_scripts' );
  83. do_action( 'login_head' ); ?></head>
  84.  
  85. <body class="login">
  86.  
  87. <?php if ( !is_multisite() ) { ?><div id="login">
  88. <h1>
  89. <a href="<?php echo esc_url( apply_filters('login_headerurl', 'http://wordpress.org/') ); ?>" title="<?php echo esc_attr( apply_filters('login_headertitle', __( 'Powered by WordPress' ) ) ); ?>"><?php bloginfo('name'); ?></a></h1><?php } else { ?><div id="login">
  90. <h1>
  91. <a href="<?php echo esc_url( apply_filters('login_headerurl', network_home_url() ) ); ?>" title="<?php echo esc_attr( apply_filters('login_headertitle', $current_site->site_name ) ); ?>">
  92. <span class="hide"><?php bloginfo('name'); ?></span></a></h1><?php }
  93. $message = apply_filters('login_message', $message);
  94. if ( !empty( $message ) ) echo $message . "\n";
  95.  
  96. // In case a plugin uses $error rather than the $wp_errors object
  97. if ( !empty( $error ) ) {
  98. $wp_error->add('error', $error);
  99. unset($error);
  100. }
  101.  
  102. if ( $wp_error->get_error_code() ) {
  103. $errors = '';
  104. $messages = '';
  105. foreach ( $wp_error->get_error_codes() as $code ) {
  106. $severity = $wp_error->get_error_data($code);
  107. foreach ( $wp_error->get_error_messages($code) as $error ) {
  108. if ( 'message' == $severity )
  109. $messages .= ' ' . $error . "<br />\n";
  110. else
  111. $errors .= ' ' . $error . "<br />\n";
  112. }
  113. }
  114. if ( !empty($errors) )
  115. echo '<div id="login_error">' . apply_filters('login_errors', $errors) . "</div>\n";
  116. if ( !empty($messages) )
  117. echo '<p class="message">' . apply_filters('login_messages', $messages) . "</p>\n";
  118. }
  119. } // End of login_header()
  120.  
  121. /**
  122. * Outputs the footer for the login page.
  123. *
  124. * @param string $input_id Which input to auto-focus
  125. */
  126. function login_footer($input_id = '') { ?><p id="backtoblog">
  127. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php esc_attr_e( 'Are you lost?' ); ?>">
  128. <?php printf( __( '&larr; Back to %s' ), get_bloginfo( 'title', 'display' ) ); ?></a></p>
  129. </div><?php if ( !empty($input_id) ) : ?><script type="text/javascript">
  130. try{document.getElementById('<?php echo $input_id; ?>').focus();}catch(e){}
  131. if(typeof wpOnload=='function')wpOnload();
  132. </script>
  133. <?php endif; ?> <?php do_action('login_footer'); ?>
  134. <div class="clear">
  135. </div>
  136.  
  137. </body>
  138.  
  139. </html><?php
  140. }
  141. function wp_shake_js() {
  142. global $is_iphone;
  143. if ( $is_iphone )
  144. return;
  145. ?><script type="text/javascript">
  146. addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
  147. function s(id,pos){g(id).left=pos+'px';}
  148. function g(id){return document.getElementById(id).style;}
  149. function shake(id,a,d){c=a.shift();s(id,c);if(a.length>0){setTimeout(function(){shake(id,a,d);},d);}else{try{g(id).position='static';wp_attempt_focus();}catch(e){}}}
  150. addLoadEvent(function(){ var p=new Array(15,30,15,0,-15,-30,-15,0);p=p.concat(p.concat(p));var i=document.forms[0].id;g(i).position='relative';shake(i,p,20);});
  151. </script><?php
  152. }
  153.  
  154. /**
  155. * Handles sending password retrieval email to user.
  156. *
  157. * @uses $wpdb WordPress Database object
  158. *
  159. * @return bool|WP_Error True: when finish. WP_Error on error
  160. */
  161. function retrieve_password() {
  162. global $wpdb, $current_site;
  163.  
  164. $errors = new WP_Error();
  165.  
  166. if ( empty( $_POST['user_login'] ) ) {
  167. $errors->add('empty_username', __('<strong>ERROR</strong>: Enter a username or e-mail address.'));
  168. } else if ( strpos( $_POST['user_login'], '@' ) ) {
  169. $user_data = get_user_by( 'email', trim( $_POST['user_login'] ) );
  170. if ( empty( $user_data ) )
  171. $errors->add('invalid_email', __('<strong>ERROR</strong>: There is no user registered with that email address.'));
  172. } else {
  173. $login = trim($_POST['user_login']);
  174. $user_data = get_user_by('login', $login);
  175. }
  176.  
  177. do_action('lostpassword_post');
  178.  
  179. if ( $errors->get_error_code() )
  180. return $errors;
  181.  
  182. if ( !$user_data ) {
  183. $errors->add('invalidcombo', __('<strong>ERROR</strong>: Invalid username or e-mail.'));
  184. return $errors;
  185. }
  186.  
  187. // redefining user_login ensures we return the right case in the email
  188. $user_login = $user_data->user_login;
  189. $user_email = $user_data->user_email;
  190.  
  191. do_action('retreive_password', $user_login); // Misspelled and deprecated
  192. do_action('retrieve_password', $user_login);
  193.  
  194. $allow = apply_filters('allow_password_reset', true, $user_data->ID);
  195.  
  196. if ( ! $allow )
  197. return new WP_Error('no_password_reset', __('Password reset is not allowed for this user'));
  198. else if ( is_wp_error($allow) )
  199. return $allow;
  200.  
  201. $key = $wpdb->get_var($wpdb->prepare("SELECT user_activation_key FROM $wpdb->users WHERE user_login = %s", $user_login));
  202. if ( empty($key) ) {
  203. // Generate something random for a key...
  204. $key = wp_generate_password(20, false);
  205. do_action('retrieve_password_key', $user_login, $key);
  206. // Now insert the new md5 key into the db
  207. $wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login));
  208. }
  209. $message = __('Someone requested that the password be reset for the following account:') . "\r\n\r\n";
  210. $message .= network_site_url() . "\r\n\r\n";
  211. $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
  212. $message .= __('If this was a mistake, just ignore this email and nothing will happen.') . "\r\n\r\n";
  213. $message .= __('To reset your password, visit the following address:') . "\r\n\r\n";
  214. $message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n";
  215.  
  216. if ( is_multisite() )
  217. $blogname = $GLOBALS['current_site']->site_name;
  218. else
  219. // The blogname option is escaped with esc_html on the way into the database in sanitize_option
  220. // we want to reverse this for the plain text arena of emails.
  221. $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
  222.  
  223. $title = sprintf( __('[%s] Password Reset'), $blogname );
  224.  
  225. $title = apply_filters('retrieve_password_title', $title);
  226. $message = apply_filters('retrieve_password_message', $message, $key);
  227.  
  228. if ( $message && !wp_mail($user_email, $title, $message) )
  229. wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function...') );
  230.  
  231. return true;
  232. }
  233.  
  234. /**
  235. * Retrieves a user row based on password reset key and login
  236. *
  237. * @uses $wpdb WordPress Database object
  238. *
  239. * @param string $key Hash to validate sending user's password
  240. * @param string $login The user login
  241. *
  242. * @return object|WP_Error
  243. */
  244. function check_password_reset_key($key, $login) {
  245. global $wpdb;
  246.  
  247. $key = preg_replace('/[^a-z0-9]/i', '', $key);
  248.  
  249. if ( empty( $key ) || !is_string( $key ) )
  250. return new WP_Error('invalid_key', __('Invalid key'));
  251.  
  252. if ( empty($login) || !is_string($login) )
  253. return new WP_Error('invalid_key', __('Invalid key'));
  254.  
  255. $user = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->users WHERE user_activation_key = %s AND user_login = %s", $key, $login));
  256.  
  257. if ( empty( $user ) )
  258. return new WP_Error('invalid_key', __('Invalid key'));
  259.  
  260. return $user;
  261. }
  262.  
  263. /**
  264. * Handles resetting the user's password.
  265. *
  266. * @uses $wpdb WordPress Database object
  267. *
  268. * @param string $key Hash to validate sending user's password
  269. */
  270. function reset_password($user, $new_pass) {
  271. do_action('password_reset', $user, $new_pass);
  272.  
  273. wp_set_password($new_pass, $user->ID);
  274.  
  275. wp_password_change_notification($user);
  276. }
  277.  
  278. /**
  279. * Handles registering a new user.
  280. *
  281. * @param string $user_login User's username for logging in
  282. * @param string $user_email User's email address to send password and add
  283. * @return int|WP_Error Either user's ID or error on failure.
  284. */
  285. function register_new_user( $user_login, $user_email ) {
  286. $errors = new WP_Error();
  287.  
  288. $sanitized_user_login = sanitize_user( $user_login );
  289. $user_email = apply_filters( 'user_registration_email', $user_email );
  290.  
  291. // Check the username
  292. if ( $sanitized_user_login == '' ) {
  293. $errors->add( 'empty_username', __( '<strong>ERROR</strong>: Please enter a username.' ) );
  294. } elseif ( ! validate_username( $user_login ) ) {
  295. $errors->add( 'invalid_username', __( '<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username.' ) );
  296. $sanitized_user_login = '';
  297. } elseif ( username_exists( $sanitized_user_login ) ) {
  298. $errors->add( 'username_exists', __( '<strong>ERROR</strong>: This username is already registered, please choose another one.' ) );
  299. }
  300.  
  301. // Check the e-mail address
  302. if ( $user_email == '' ) {
  303. $errors->add( 'empty_email', __( '<strong>ERROR</strong>: Please type your e-mail address.' ) );
  304. } elseif ( ! is_email( $user_email ) ) {
  305. $errors->add( 'invalid_email', __( '<strong>ERROR</strong>: The email address isn&#8217;t correct.' ) );
  306. $user_email = '';
  307. } elseif ( email_exists( $user_email ) ) {
  308. $errors->add( 'email_exists', __( '<strong>ERROR</strong>: This email is already registered, please choose another one.' ) );
  309. }
  310.  
  311. do_action( 'register_post', $sanitized_user_login, $user_email, $errors );
  312.  
  313. $errors = apply_filters( 'registration_errors', $errors, $sanitized_user_login, $user_email );
  314.  
  315. if ( $errors->get_error_code() )
  316. return $errors;
  317.  
  318. $user_pass = wp_generate_password( 12, false);
  319. $user_id = wp_create_user( $sanitized_user_login, $user_pass, $user_email );
  320. if ( ! $user_id ) {
  321. $errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href="mailto:%s">webmaster</a> !' ), get_option( 'admin_email' ) ) );
  322. return $errors;
  323. }
  324.  
  325. update_user_option( $user_id, 'default_password_nag', true, true ); //Set up the Password change nag.
  326.  
  327. wp_new_user_notification( $user_id, $user_pass );
  328.  
  329. return $user_id;
  330. }
  331.  
  332. //
  333. // Main
  334. //
  335.  
  336. $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'login';
  337. $errors = new WP_Error();
  338.  
  339. if ( isset($_GET['key']) )
  340. $action = 'resetpass';
  341.  
  342. // validate action so as to default to the login screen
  343. if ( !in_array($action, array('logout', 'lostpassword', 'retrievepassword', 'resetpass', 'rp', 'register', 'login'), true) && false === has_filter('login_form_' . $action) )
  344. $action = 'login';
  345.  
  346. nocache_headers();
  347.  
  348. header('Content-Type: '.get_bloginfo('html_type').'; charset='.get_bloginfo('charset'));
  349.  
  350. if ( defined('RELOCATE') ) { // Move flag is set
  351. if ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) )
  352. $_SERVER['PHP_SELF'] = str_replace( $_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF'] );
  353.  
  354. $schema = is_ssl() ? 'https://' : 'http://';
  355. if ( dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) != get_option('siteurl') )
  356. update_option('siteurl', dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) );
  357. }
  358.  
  359. //Set a cookie now to see if they are supported by the browser.
  360. setcookie(TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN);
  361. if ( SITECOOKIEPATH != COOKIEPATH )
  362. setcookie(TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN);
  363.  
  364. // allow plugins to override the default actions, and to add extra actions if they want
  365. do_action( 'login_init' );
  366. do_action( 'login_form_' . $action );
  367.  
  368. $http_post = ('POST' == $_SERVER['REQUEST_METHOD']);
  369. switch ($action) {
  370.  
  371. case 'logout' :
  372. check_admin_referer('log-out');
  373. wp_logout();
  374.  
  375. $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : 'wp-login.php?loggedout=true';
  376. wp_safe_redirect( $redirect_to );
  377. exit();
  378.  
  379. break;
  380.  
  381. case 'lostpassword' :
  382. case 'retrievepassword' :
  383.  
  384. if ( $http_post ) {
  385. $errors = retrieve_password();
  386. if ( !is_wp_error($errors) ) {
  387. $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : 'wp-login.php?checkemail=confirm';
  388. wp_safe_redirect( $redirect_to );
  389. exit();
  390. }
  391. }
  392.  
  393. if ( isset($_GET['error']) && 'invalidkey' == $_GET['error'] ) $errors->add('invalidkey', __('Sorry, that key does not appear to be valid.'));
  394. $redirect_to = apply_filters( 'lostpassword_redirect', !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '' );
  395.  
  396. do_action('lost_password');
  397. login_header(__('Lost Password'), '<p class="message">' . __('Please enter your username or email address. You will receive a link to create a new password via email.') . '</p>', $errors);
  398.  
  399. $user_login = isset($_POST['user_login']) ? stripslashes($_POST['user_login']) : ''; ?><form name="lostpasswordform" id="lostpasswordform" action="<?php echo esc_url( site_url( 'wp-login.php?action=lostpassword', 'login_post' ) ); ?>" method="post">
  400. <p><label for="user_login"><?php _e('Username or E-mail:') ?><br />
  401. <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" tabindex="10" /></label>
  402. </p><?php do_action('lostpassword_form'); ?><input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
  403. <p class="submit">
  404. <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Get New Password'); ?>" tabindex="100" /></p>
  405. </form>
  406. <p id="nav"><a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e('Log in') ?></a><?php if ( get_option( 'users_can_register' ) ) : ?>|<a href="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login' ) ); ?>"><?php _e( 'Register' ); ?></a> <?php endif; ?> </p><?php
  407. login_footer('user_login');
  408. break;
  409.  
  410. case 'resetpass' :
  411. case 'rp' :
  412. $user = check_password_reset_key($_GET['key'], $_GET['login']);
  413.  
  414. if ( is_wp_error($user) ) {
  415. wp_redirect( site_url('wp-login.php?action=lostpassword&error=invalidkey') );
  416. exit;
  417. }
  418.  
  419. $errors = '';
  420.  
  421. if ( isset($_POST['pass1']) && $_POST['pass1'] != $_POST['pass2'] ) {
  422. $errors = new WP_Error('password_reset_mismatch', __('The passwords do not match.'));
  423. } elseif ( isset($_POST['pass1']) && !empty($_POST['pass1']) ) {
  424. reset_password($user, $_POST['pass1']);
  425. login_header( __( 'Password Reset' ), '<p class="message reset-pass">' . __( 'Your password has been reset.' ) . ' <a href="' . esc_url( wp_login_url() ) . '">' . __( 'Log in' ) . '</a></p>' );
  426. login_footer();
  427. exit;
  428. }
  429.  
  430. wp_enqueue_script('utils');
  431. wp_enqueue_script('user-profile');
  432.  
  433. login_header(__('Reset Password'), '<p class="message reset-pass">' . __('Enter your new password below.') . '</p>', $errors ); ?>
  434. <form name="resetpassform" id="resetpassform" action="<?php echo esc_url( site_url( 'wp-login.php?action=resetpass&key=' . urlencode( $_GET['key'] ) . '&login=' . urlencode( $_GET['login'] ), 'login_post' ) ); ?>" method="post">
  435. <input type="hidden" id="user_login" value="<?php echo esc_attr( $_GET['login'] ); ?>" autocomplete="off" />
  436. <p><label for="pass1"><?php _e('New password') ?><br />
  437. <input type="password" name="pass1" id="pass1" class="input" size="20" value="" autocomplete="off" /></label>
  438. </p>
  439. <p><label for="pass2"><?php _e('Confirm new password') ?><br />
  440. <input type="password" name="pass2" id="pass2" class="input" size="20" value="" autocomplete="off" /></label>
  441. </p>
  442. <div id="pass-strength-result" class="hide-if-no-js">
  443. <?php _e('Strength indicator'); ?></div>
  444. <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ &amp; ).'); ?></p>
  445. <br class="clear" />
  446. <p class="submit">
  447. <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Reset Password'); ?>" tabindex="100" /></p>
  448. </form>
  449. <p id="nav"><a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
  450. <?php if ( get_option( 'users_can_register' ) ) : ?> |
  451. <a href="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login' ) ); ?>">
  452. <?php _e( 'Register' ); ?></a> <?php endif; ?> </p>
  453. <?php
  454. login_footer('user_pass');
  455. break;
  456.  
  457. case 'register' :
  458. if ( is_multisite() ) {
  459. // Multisite uses wp-signup.php
  460. wp_redirect( apply_filters( 'wp_signup_location', site_url('wp-signup.php') ) );
  461. exit;
  462. }
  463.  
  464. if ( !get_option('users_can_register') ) {
  465. wp_redirect( site_url('wp-login.php?registration=disabled') );
  466. exit();
  467. }
  468.  
  469. $user_login = '';
  470. $user_email = '';
  471. if ( $http_post ) {
  472. $user_login = $_POST['user_login'];
  473. $user_email = $_POST['user_email'];
  474. $errors = register_new_user($user_login, $user_email);
  475. if ( !is_wp_error($errors) ) {
  476. $redirect_to = !empty( $_POST['redirect_to'] ) ? $_POST['redirect_to'] : 'wp-login.php?checkemail=registered';
  477. wp_safe_redirect( $redirect_to );
  478. exit();
  479. }
  480. }
  481.  
  482. $redirect_to = apply_filters( 'registration_redirect', !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '' );
  483. login_header(__('Registration Form'), '<p class="message register">' . __('Register For This Site') . '</p>', $errors);
  484. ?>
  485. <form name="registerform" id="registerform" action="<?php echo esc_url( site_url('wp-login.php?action=register', 'login_post') ); ?>" method="post">
  486. <p><label for="user_login"><?php _e('Username') ?><br />
  487. <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr(stripslashes($user_login)); ?>" size="20" tabindex="10" /></label>
  488. </p>
  489. <p><label for="user_email"><?php _e('E-mail') ?><br />
  490. <input type="email" name="user_email" id="user_email" class="input" value="<?php echo esc_attr(stripslashes($user_email)); ?>" size="25" tabindex="20" /></label>
  491. </p>
  492. <?php do_action('register_form'); ?>
  493. <p id="reg_passmail"><?php _e('A password will be e-mailed to you.') ?></p>
  494. <br class="clear" />
  495. <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
  496. <p class="submit">
  497. <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Register'); ?>" tabindex="100" /></p>
  498. </form>
  499. <p id="nav"><a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
  500. |
  501. <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ) ?>">
  502. <?php _e( 'Lost your password?' ); ?></a> </p>
  503. <?php
  504. login_footer('user_login');
  505. break;
  506.  
  507. case 'login' :
  508. default:
  509. $secure_cookie = '';
  510. $interim_login = isset($_REQUEST['interim-login']);
  511.  
  512. // If the user wants ssl but the session is not ssl, force a secure cookie.
  513. if ( !empty($_POST['log']) && !force_ssl_admin() ) {
  514. $user_name = sanitize_user($_POST['log']);
  515. if ( $user = get_user_by('login', $user_name) ) {
  516. if ( get_user_option('use_ssl', $user->ID) ) {
  517. $secure_cookie = true;
  518. force_ssl_admin(true);
  519. }
  520. }
  521. }
  522.  
  523. if ( isset( $_REQUEST['redirect_to'] ) ) {
  524. $redirect_to = $_REQUEST['redirect_to'];
  525. // Redirect to https if user wants ssl
  526. if ( $secure_cookie && false !== strpos($redirect_to, 'wp-admin') )
  527. $redirect_to = preg_replace('|^http://|', 'https://', $redirect_to);
  528. } else {
  529. $redirect_to = admin_url();
  530. }
  531.  
  532. $reauth = empty($_REQUEST['reauth']) ? false : true;
  533.  
  534. // If the user was redirected to a secure login form from a non-secure admin page, and secure login is required but secure admin is not, then don't use a secure
  535. // cookie and redirect back to the referring non-secure admin page. This allows logins to always be POSTed over SSL while allowing the user to choose visiting
  536. // the admin via http or https.
  537. if ( !$secure_cookie && is_ssl() && force_ssl_login() && !force_ssl_admin() && ( 0 !== strpos($redirect_to, 'https') ) && ( 0 === strpos($redirect_to, 'http') ) )
  538. $secure_cookie = false;
  539.  
  540. $user = wp_signon('', $secure_cookie);
  541.  
  542. $redirect_to = apply_filters('login_redirect', $redirect_to, isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '', $user);
  543.  
  544. if ( !is_wp_error($user) && !$reauth ) {
  545. if ( $interim_login ) {
  546. $message = '<p class="message">' . __('You have logged in successfully.') . '</p>';
  547. login_header( '', $message ); ?>
  548. <script type="text/javascript">setTimeout( function(){window.close()}, 8000);</script>
  549. <p class="alignright">
  550. <input type="button" class="button-primary" value="<?php esc_attr_e('Close'); ?>" onclick="window.close()" /></p>
  551. </div>
  552.  
  553. </body>
  554.  
  555. </html>
  556. <?php exit;
  557. }
  558.  
  559. if ( ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) ) {
  560. // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile.
  561. if ( is_multisite() && !get_active_blog_for_user($user->ID) && !is_super_admin( $user->ID ) )
  562. $redirect_to = user_admin_url();
  563. elseif ( is_multisite() && !$user->has_cap('read') )
  564. $redirect_to = get_dashboard_url( $user->ID );
  565. elseif ( !$user->has_cap('edit_posts') )
  566. $redirect_to = admin_url('profile.php');
  567. }
  568. wp_safe_redirect($redirect_to);
  569. exit();
  570. }
  571.  
  572. $errors = $user;
  573. // Clear errors if loggedout is set.
  574. if ( !empty($_GET['loggedout']) || $reauth )
  575. $errors = new WP_Error();
  576.  
  577. // If cookies are disabled we can't log in even with a valid user+pass
  578. if ( isset($_POST['testcookie']) && empty($_COOKIE[TEST_COOKIE]) )
  579. $errors->add('test_cookie', __("<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href='http://www.google.com/cookies.html'>enable cookies</a> to use WordPress."));
  580.  
  581. // Some parts of this script use the main login form to display a message
  582. if ( isset($_GET['loggedout']) && TRUE == $_GET['loggedout'] )
  583. $errors->add('loggedout', __('You are now logged out.'), 'message');
  584. elseif ( isset($_GET['registration']) && 'disabled' == $_GET['registration'] )
  585. $errors->add('registerdisabled', __('User registration is currently not allowed.'));
  586. elseif ( isset($_GET['checkemail']) && 'confirm' == $_GET['checkemail'] )
  587. $errors->add('confirm', __('Check your e-mail for the confirmation link.'), 'message');
  588. elseif ( isset($_GET['checkemail']) && 'newpass' == $_GET['checkemail'] )
  589. $errors->add('newpass', __('Check your e-mail for your new password.'), 'message');
  590. elseif ( isset($_GET['checkemail']) && 'registered' == $_GET['checkemail'] )
  591. $errors->add('registered', __('Registration complete. Please check your e-mail.'), 'message');
  592. elseif ( $interim_login )
  593. $errors->add('expired', __('Your session has expired. Please log-in again.'), 'message');
  594.  
  595. // Clear any stale cookies.
  596. if ( $reauth )
  597. wp_clear_auth_cookie();
  598.  
  599. login_header(__('Log In'), '', $errors);
  600.  
  601. if ( isset($_POST['log']) )
  602. $user_login = ( 'incorrect_password' == $errors->get_error_code() || 'empty_password' == $errors->get_error_code() ) ? esc_attr(stripslashes($_POST['log'])) : '';
  603. $rememberme = ! empty( $_POST['rememberme'] );
  604. ?>
  605. <form name="loginform" id="loginform" action="<?php echo esc_url( site_url( 'wp-login.php', 'login_post' ) ); ?>" method="post">
  606. <p><label for="user_login"><?php _e('Username') ?><br />
  607. <input type="text" name="log" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" tabindex="10" /></label>
  608. </p>
  609. <p><label for="user_pass"><?php _e('Password') ?><br />
  610. <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label>
  611. </p>
  612. <?php do_action('login_form'); ?>
  613. <p class="forgetmenot"><label for="rememberme">
  614. <input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" <?php checked( $rememberme ); ?>="" />
  615. <?php esc_attr_e('Remember Me'); ?></label></p>
  616. <p class="submit">
  617. <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Log In'); ?>" tabindex="100" />
  618. <?php if ( $interim_login ) { ?>
  619. <input type="hidden" name="interim-login" value="1" /><?php } else { ?>
  620. <input type="hidden" name="redirect_to" value="<?php echo esc_attr($redirect_to); ?>" />
  621. <?php } ?> <input type="hidden" name="testcookie" value="1" /></p>
  622. </form>
  623. <?php if ( !$interim_login ) { ?>
  624. <p id="nav"><?php if ( isset($_GET['checkemail']) && in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?>
  625. <?php elseif ( get_option('users_can_register') ) : ?>
  626. <a href="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login' ) ); ?>">
  627. <?php _e( 'Register' ); ?></a> |
  628. <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ); ?>">
  629. <?php _e( 'Lost your password?' ); ?></a> <?php else : ?>
  630. <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ); ?>">
  631. <?php _e( 'Lost your password?' ); ?></a> <?php endif; ?> </p>
  632. <?php } ?>
  633. <script type="text/javascript">
  634. function wp_attempt_focus(){
  635. setTimeout( function(){ try{
  636. <?php if ( $user_login || $interim_login ) { ?>
  637. d = document.getElementById('user_pass');
  638. d.value = '';
  639. <?php } else { ?>
  640. d = document.getElementById('user_login');
  641. <?php if ( 'invalid_username' == $errors->get_error_code() ) { ?>
  642. if( d.value != '' )
  643. d.value = '';
  644. <?php
  645. }
  646. }?>
  647. d.focus();
  648. d.select();
  649. } catch(e){}
  650. }, 200);
  651. }
  652.  
  653. <?php if ( !$error ) { ?>
  654. wp_attempt_focus();
  655. <?php } ?>
  656. if(typeof wpOnload=='function')wpOnload();
  657. </script>
  658. <?php
  659. login_footer();
  660. break;
  661. } // end action switch
  662. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement