PageRenderTime 53ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-login.php

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