]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-login.php
WordPress 4.2.4
[autoinstalls/wordpress.git] / wp-login.php
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( set_url_scheme( $_SERVER['REQUEST_URI'], 'https' ) );
18                 exit();
19         } else {
20                 wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
21                 exit();
22         }
23 }
24
25 /**
26  * Output the login page header.
27  *
28  * @param string   $title    Optional. WordPress login Page title to display in the `<title>` element.
29  *                           Default 'Log In'.
30  * @param string   $message  Optional. Message to display in header. Default empty.
31  * @param WP_Error $wp_error Optional. The error to pass. Default empty.
32  */
33 function login_header( $title = 'Log In', $message = '', $wp_error = '' ) {
34         global $error, $interim_login, $action;
35
36         // Don't index any of these forms
37         add_action( 'login_head', 'wp_no_robots' );
38
39         if ( wp_is_mobile() )
40                 add_action( 'login_head', 'wp_login_viewport_meta' );
41
42         if ( empty($wp_error) )
43                 $wp_error = new WP_Error();
44
45         // Shake it!
46         $shake_error_codes = array( 'empty_password', 'empty_email', 'invalid_email', 'invalidcombo', 'empty_username', 'invalid_username', 'incorrect_password' );
47         /**
48          * Filter the error codes array for shaking the login form.
49          *
50          * @since 3.0.0
51          *
52          * @param array $shake_error_codes Error codes that shake the login form.
53          */
54         $shake_error_codes = apply_filters( 'shake_error_codes', $shake_error_codes );
55
56         if ( $shake_error_codes && $wp_error->get_error_code() && in_array( $wp_error->get_error_code(), $shake_error_codes ) )
57                 add_action( 'login_head', 'wp_shake_js', 12 );
58
59         ?><!DOCTYPE html>
60         <!--[if IE 8]>
61                 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8" <?php language_attributes(); ?>>
62         <![endif]-->
63         <!--[if !(IE 8) ]><!-->
64                 <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
65         <!--<![endif]-->
66         <head>
67         <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
68         <title><?php bloginfo('name'); ?> &rsaquo; <?php echo $title; ?></title>
69         <?php
70
71         wp_admin_css( 'login', true );
72
73         /*
74          * Remove all stored post data on logging out.
75          * This could be added by add_action('login_head'...) like wp_shake_js(),
76          * but maybe better if it's not removable by plugins
77          */
78         if ( 'loggedout' == $wp_error->get_error_code() ) {
79                 ?>
80                 <script>if("sessionStorage" in window){try{for(var key in sessionStorage){if(key.indexOf("wp-autosave-")!=-1){sessionStorage.removeItem(key)}}}catch(e){}};</script>
81                 <?php
82         }
83
84         /**
85          * Enqueue scripts and styles for the login page.
86          *
87          * @since 3.1.0
88          */
89         do_action( 'login_enqueue_scripts' );
90         /**
91          * Fires in the login page header after scripts are enqueued.
92          *
93          * @since 2.1.0
94          */
95         do_action( 'login_head' );
96
97         if ( is_multisite() ) {
98                 $login_header_url   = network_home_url();
99                 $login_header_title = get_current_site()->site_name;
100         } else {
101                 $login_header_url   = __( 'https://wordpress.org/' );
102                 $login_header_title = __( 'Powered by WordPress' );
103         }
104
105         /**
106          * Filter link URL of the header logo above login form.
107          *
108          * @since 2.1.0
109          *
110          * @param string $login_header_url Login header logo URL.
111          */
112         $login_header_url = apply_filters( 'login_headerurl', $login_header_url );
113         /**
114          * Filter the title attribute of the header logo above login form.
115          *
116          * @since 2.1.0
117          *
118          * @param string $login_header_title Login header logo title attribute.
119          */
120         $login_header_title = apply_filters( 'login_headertitle', $login_header_title );
121
122         $classes = array( 'login-action-' . $action, 'wp-core-ui' );
123         if ( wp_is_mobile() )
124                 $classes[] = 'mobile';
125         if ( is_rtl() )
126                 $classes[] = 'rtl';
127         if ( $interim_login ) {
128                 $classes[] = 'interim-login';
129                 ?>
130                 <style type="text/css">html{background-color: transparent;}</style>
131                 <?php
132
133                 if ( 'success' ===  $interim_login )
134                         $classes[] = 'interim-login-success';
135         }
136         $classes[] =' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
137
138         /**
139          * Filter the login page body classes.
140          *
141          * @since 3.5.0
142          *
143          * @param array  $classes An array of body classes.
144          * @param string $action  The action that brought the visitor to the login page.
145          */
146         $classes = apply_filters( 'login_body_class', $classes, $action );
147
148         ?>
149         </head>
150         <body class="login <?php echo esc_attr( implode( ' ', $classes ) ); ?>">
151         <div id="login">
152                 <h1><a href="<?php echo esc_url( $login_header_url ); ?>" title="<?php echo esc_attr( $login_header_title ); ?>" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1>
153         <?php
154
155         unset( $login_header_url, $login_header_title );
156
157         /**
158          * Filter the message to display above the login form.
159          *
160          * @since 2.1.0
161          *
162          * @param string $message Login message text.
163          */
164         $message = apply_filters( 'login_message', $message );
165         if ( !empty( $message ) )
166                 echo $message . "\n";
167
168         // In case a plugin uses $error rather than the $wp_errors object
169         if ( !empty( $error ) ) {
170                 $wp_error->add('error', $error);
171                 unset($error);
172         }
173
174         if ( $wp_error->get_error_code() ) {
175                 $errors = '';
176                 $messages = '';
177                 foreach ( $wp_error->get_error_codes() as $code ) {
178                         $severity = $wp_error->get_error_data( $code );
179                         foreach ( $wp_error->get_error_messages( $code ) as $error_message ) {
180                                 if ( 'message' == $severity )
181                                         $messages .= '  ' . $error_message . "<br />\n";
182                                 else
183                                         $errors .= '    ' . $error_message . "<br />\n";
184                         }
185                 }
186                 if ( ! empty( $errors ) ) {
187                         /**
188                          * Filter the error messages displayed above the login form.
189                          *
190                          * @since 2.1.0
191                          *
192                          * @param string $errors Login error message.
193                          */
194                         echo '<div id="login_error">' . apply_filters( 'login_errors', $errors ) . "</div>\n";
195                 }
196                 if ( ! empty( $messages ) ) {
197                         /**
198                          * Filter instructional messages displayed above the login form.
199                          *
200                          * @since 2.5.0
201                          *
202                          * @param string $messages Login messages.
203                          */
204                         echo '<p class="message">' . apply_filters( 'login_messages', $messages ) . "</p>\n";
205                 }
206         }
207 } // End of login_header()
208
209 /**
210  * Outputs the footer for the login page.
211  *
212  * @param string $input_id Which input to auto-focus
213  */
214 function login_footer($input_id = '') {
215         global $interim_login;
216
217         // Don't allow interim logins to navigate away from the page.
218         if ( ! $interim_login ): ?>
219         <p id="backtoblog"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php esc_attr_e( 'Are you lost?' ); ?>"><?php printf( __( '&larr; Back to %s' ), get_bloginfo( 'title', 'display' ) ); ?></a></p>
220         <?php endif; ?>
221
222         </div>
223
224         <?php if ( !empty($input_id) ) : ?>
225         <script type="text/javascript">
226         try{document.getElementById('<?php echo $input_id; ?>').focus();}catch(e){}
227         if(typeof wpOnload=='function')wpOnload();
228         </script>
229         <?php endif; ?>
230
231         <?php
232         /**
233          * Fires in the login page footer.
234          *
235          * @since 3.1.0
236          */
237         do_action( 'login_footer' ); ?>
238         <div class="clear"></div>
239         </body>
240         </html>
241         <?php
242 }
243
244 function wp_shake_js() {
245         if ( wp_is_mobile() )
246                 return;
247 ?>
248 <script type="text/javascript">
249 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();}}};
250 function s(id,pos){g(id).left=pos+'px';}
251 function g(id){return document.getElementById(id).style;}
252 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){}}}
253 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);});
254 </script>
255 <?php
256 }
257
258 function wp_login_viewport_meta() {
259         ?>
260         <meta name="viewport" content="width=device-width" />
261         <?php
262 }
263
264 /**
265  * Handles sending password retrieval email to user.
266  *
267  * @global wpdb         $wpdb      WordPress database abstraction object.
268  * @global PasswordHash $wp_hasher Portable PHP password hashing framework.
269  *
270  * @return bool|WP_Error True: when finish. WP_Error on error
271  */
272 function retrieve_password() {
273         global $wpdb, $wp_hasher;
274
275         $errors = new WP_Error();
276
277         if ( empty( $_POST['user_login'] ) ) {
278                 $errors->add('empty_username', __('<strong>ERROR</strong>: Enter a username or e-mail address.'));
279         } elseif ( strpos( $_POST['user_login'], '@' ) ) {
280                 $user_data = get_user_by( 'email', trim( $_POST['user_login'] ) );
281                 if ( empty( $user_data ) )
282                         $errors->add('invalid_email', __('<strong>ERROR</strong>: There is no user registered with that email address.'));
283         } else {
284                 $login = trim($_POST['user_login']);
285                 $user_data = get_user_by('login', $login);
286         }
287
288         /**
289          * Fires before errors are returned from a password reset request.
290          *
291          * @since 2.1.0
292          */
293         do_action( 'lostpassword_post' );
294
295         if ( $errors->get_error_code() )
296                 return $errors;
297
298         if ( !$user_data ) {
299                 $errors->add('invalidcombo', __('<strong>ERROR</strong>: Invalid username or e-mail.'));
300                 return $errors;
301         }
302
303         // Redefining user_login ensures we return the right case in the email.
304         $user_login = $user_data->user_login;
305         $user_email = $user_data->user_email;
306
307         /**
308          * Fires before a new password is retrieved.
309          *
310          * @since 1.5.0
311          * @deprecated 1.5.1 Misspelled. Use 'retrieve_password' hook instead.
312          *
313          * @param string $user_login The user login name.
314          */
315         do_action( 'retreive_password', $user_login );
316
317         /**
318          * Fires before a new password is retrieved.
319          *
320          * @since 1.5.1
321          *
322          * @param string $user_login The user login name.
323          */
324         do_action( 'retrieve_password', $user_login );
325
326         /**
327          * Filter whether to allow a password to be reset.
328          *
329          * @since 2.7.0
330          *
331          * @param bool true           Whether to allow the password to be reset. Default true.
332          * @param int  $user_data->ID The ID of the user attempting to reset a password.
333          */
334         $allow = apply_filters( 'allow_password_reset', true, $user_data->ID );
335
336         if ( ! $allow ) {
337                 return new WP_Error( 'no_password_reset', __('Password reset is not allowed for this user') );
338         } elseif ( is_wp_error( $allow ) ) {
339                 return $allow;
340         }
341
342         // Generate something random for a password reset key.
343         $key = wp_generate_password( 20, false );
344
345         /**
346          * Fires when a password reset key is generated.
347          *
348          * @since 2.5.0
349          *
350          * @param string $user_login The username for the user.
351          * @param string $key        The generated password reset key.
352          */
353         do_action( 'retrieve_password_key', $user_login, $key );
354
355         // Now insert the key, hashed, into the DB.
356         if ( empty( $wp_hasher ) ) {
357                 require_once ABSPATH . WPINC . '/class-phpass.php';
358                 $wp_hasher = new PasswordHash( 8, true );
359         }
360         $hashed = $wp_hasher->HashPassword( $key );
361         $wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user_login ) );
362
363         $message = __('Someone requested that the password be reset for the following account:') . "\r\n\r\n";
364         $message .= network_home_url( '/' ) . "\r\n\r\n";
365         $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
366         $message .= __('If this was a mistake, just ignore this email and nothing will happen.') . "\r\n\r\n";
367         $message .= __('To reset your password, visit the following address:') . "\r\n\r\n";
368         $message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n";
369
370         if ( is_multisite() )
371                 $blogname = $GLOBALS['current_site']->site_name;
372         else
373                 /*
374                  * The blogname option is escaped with esc_html on the way into the database
375                  * in sanitize_option we want to reverse this for the plain text arena of emails.
376                  */
377                 $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
378
379         $title = sprintf( __('[%s] Password Reset'), $blogname );
380
381         /**
382          * Filter the subject of the password reset email.
383          *
384          * @since 2.8.0
385          *
386          * @param string $title Default email title.
387          */
388         $title = apply_filters( 'retrieve_password_title', $title );
389
390         /**
391          * Filter the message body of the password reset mail.
392          *
393          * @since 2.8.0
394          * @since 4.1.0 Added `$user_login` and `$user_data` parameters.
395          *
396          * @param string  $message    Default mail message.
397          * @param string  $key        The activation key.
398          * @param string  $user_login The username for the user.
399          * @param WP_User $user_data  WP_User object.
400          */
401         $message = apply_filters( 'retrieve_password_message', $message, $key, $user_login, $user_data );
402
403         if ( $message && !wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) )
404                 wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') );
405
406         return true;
407 }
408
409 //
410 // Main
411 //
412
413 $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'login';
414 $errors = new WP_Error();
415
416 if ( isset($_GET['key']) )
417         $action = 'resetpass';
418
419 // validate action so as to default to the login screen
420 if ( !in_array( $action, array( 'postpass', 'logout', 'lostpassword', 'retrievepassword', 'resetpass', 'rp', 'register', 'login' ), true ) && false === has_filter( 'login_form_' . $action ) )
421         $action = 'login';
422
423 nocache_headers();
424
425 header('Content-Type: '.get_bloginfo('html_type').'; charset='.get_bloginfo('charset'));
426
427 if ( defined( 'RELOCATE' ) && RELOCATE ) { // Move flag is set
428         if ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) )
429                 $_SERVER['PHP_SELF'] = str_replace( $_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF'] );
430
431         $url = dirname( set_url_scheme( 'http://' .  $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'] ) );
432         if ( $url != get_option( 'siteurl' ) )
433                 update_option( 'siteurl', $url );
434 }
435
436 //Set a cookie now to see if they are supported by the browser.
437 $secure = ( 'https' === parse_url( site_url(), PHP_URL_SCHEME ) && 'https' === parse_url( home_url(), PHP_URL_SCHEME ) );
438 setcookie( TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN, $secure );
439 if ( SITECOOKIEPATH != COOKIEPATH )
440         setcookie( TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN, $secure );
441
442 /**
443  * Fires when the login form is initialized.
444  *
445  * @since 3.2.0
446  */
447 do_action( 'login_init' );
448 /**
449  * Fires before a specified login form action.
450  *
451  * The dynamic portion of the hook name, `$action`, refers to the action
452  * that brought the visitor to the login form. Actions include 'postpass',
453  * 'logout', 'lostpassword', etc.
454  *
455  * @since 2.8.0
456  */
457 do_action( 'login_form_' . $action );
458
459 $http_post = ('POST' == $_SERVER['REQUEST_METHOD']);
460 $interim_login = isset($_REQUEST['interim-login']);
461
462 switch ($action) {
463
464 case 'postpass' :
465         require_once ABSPATH . WPINC . '/class-phpass.php';
466         $hasher = new PasswordHash( 8, true );
467
468         /**
469          * Filter the life span of the post password cookie.
470          *
471          * By default, the cookie expires 10 days from creation. To turn this
472          * into a session cookie, return 0.
473          *
474          * @since 3.7.0
475          *
476          * @param int $expires The expiry time, as passed to setcookie().
477          */
478         $expire = apply_filters( 'post_password_expires', time() + 10 * DAY_IN_SECONDS );
479         $secure = ( 'https' === parse_url( home_url(), PHP_URL_SCHEME ) );
480         setcookie( 'wp-postpass_' . COOKIEHASH, $hasher->HashPassword( wp_unslash( $_POST['post_password'] ) ), $expire, COOKIEPATH, COOKIE_DOMAIN, $secure );
481
482         wp_safe_redirect( wp_get_referer() );
483         exit();
484
485 case 'logout' :
486         check_admin_referer('log-out');
487
488         $user = wp_get_current_user();
489
490         wp_logout();
491
492         if ( ! empty( $_REQUEST['redirect_to'] ) ) {
493                 $redirect_to = $requested_redirect_to = $_REQUEST['redirect_to'];
494         } else {
495                 $redirect_to = 'wp-login.php?loggedout=true';
496                 $requested_redirect_to = '';
497         }
498
499         /**
500          * Filter the log out redirect URL.
501          *
502          * @since 4.2.0
503          *
504          * @param string  $redirect_to           The redirect destination URL.
505          * @param string  $requested_redirect_to The requested redirect destination URL passed as a parameter.
506          * @param WP_User $user                  The WP_User object for the user that's logging out.
507          */
508         $redirect_to = apply_filters( 'logout_redirect', $redirect_to, $requested_redirect_to, $user );
509         wp_safe_redirect( $redirect_to );
510         exit();
511
512 case 'lostpassword' :
513 case 'retrievepassword' :
514
515         if ( $http_post ) {
516                 $errors = retrieve_password();
517                 if ( !is_wp_error($errors) ) {
518                         $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : 'wp-login.php?checkemail=confirm';
519                         wp_safe_redirect( $redirect_to );
520                         exit();
521                 }
522         }
523
524         if ( isset( $_GET['error'] ) ) {
525                 if ( 'invalidkey' == $_GET['error'] )
526                         $errors->add( 'invalidkey', __( 'Sorry, that key does not appear to be valid.' ) );
527                 elseif ( 'expiredkey' == $_GET['error'] )
528                         $errors->add( 'expiredkey', __( 'Sorry, that key has expired. Please try again.' ) );
529         }
530
531         $lostpassword_redirect = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
532         /**
533          * Filter the URL redirected to after submitting the lostpassword/retrievepassword form.
534          *
535          * @since 3.0.0
536          *
537          * @param string $lostpassword_redirect The redirect destination URL.
538          */
539         $redirect_to = apply_filters( 'lostpassword_redirect', $lostpassword_redirect );
540
541         /**
542          * Fires before the lost password form.
543          *
544          * @since 1.5.1
545          */
546         do_action( 'lost_password' );
547
548         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);
549
550         $user_login = isset($_POST['user_login']) ? wp_unslash($_POST['user_login']) : '';
551
552 ?>
553
554 <form name="lostpasswordform" id="lostpasswordform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=lostpassword', 'login_post' ) ); ?>" method="post">
555         <p>
556                 <label for="user_login" ><?php _e('Username or E-mail:') ?><br />
557                 <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" /></label>
558         </p>
559         <?php
560         /**
561          * Fires inside the lostpassword form tags, before the hidden fields.
562          *
563          * @since 2.1.0
564          */
565         do_action( 'lostpassword_form' ); ?>
566         <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
567         <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Get New Password'); ?>" /></p>
568 </form>
569
570 <p id="nav">
571 <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e('Log in') ?></a>
572 <?php
573 if ( get_option( 'users_can_register' ) ) :
574         $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
575
576         /** This filter is documented in wp-includes/general-template.php */
577         echo ' | ' . apply_filters( 'register', $registration_url );
578 endif;
579 ?>
580 </p>
581
582 <?php
583 login_footer('user_login');
584 break;
585
586 case 'resetpass' :
587 case 'rp' :
588         list( $rp_path ) = explode( '?', wp_unslash( $_SERVER['REQUEST_URI'] ) );
589         $rp_cookie = 'wp-resetpass-' . COOKIEHASH;
590         if ( isset( $_GET['key'] ) ) {
591                 $value = sprintf( '%s:%s', wp_unslash( $_GET['login'] ), wp_unslash( $_GET['key'] ) );
592                 setcookie( $rp_cookie, $value, 0, $rp_path, COOKIE_DOMAIN, is_ssl(), true );
593                 wp_safe_redirect( remove_query_arg( array( 'key', 'login' ) ) );
594                 exit;
595         }
596
597         if ( isset( $_COOKIE[ $rp_cookie ] ) && 0 < strpos( $_COOKIE[ $rp_cookie ], ':' ) ) {
598                 list( $rp_login, $rp_key ) = explode( ':', wp_unslash( $_COOKIE[ $rp_cookie ] ), 2 );
599                 $user = check_password_reset_key( $rp_key, $rp_login );
600                 if ( isset( $_POST['pass1'] ) && ! hash_equals( $rp_key, $_POST['rp_key'] ) ) {
601                         $user = false;
602                 }
603         } else {
604                 $user = false;
605         }
606
607         if ( ! $user || is_wp_error( $user ) ) {
608                 setcookie( $rp_cookie, ' ', time() - YEAR_IN_SECONDS, $rp_path, COOKIE_DOMAIN, is_ssl(), true );
609                 if ( $user && $user->get_error_code() === 'expired_key' )
610                         wp_redirect( site_url( 'wp-login.php?action=lostpassword&error=expiredkey' ) );
611                 else
612                         wp_redirect( site_url( 'wp-login.php?action=lostpassword&error=invalidkey' ) );
613                 exit;
614         }
615
616         $errors = new WP_Error();
617
618         if ( isset($_POST['pass1']) && $_POST['pass1'] != $_POST['pass2'] )
619                 $errors->add( 'password_reset_mismatch', __( 'The passwords do not match.' ) );
620
621         /**
622          * Fires before the password reset procedure is validated.
623          *
624          * @since 3.5.0
625          *
626          * @param object           $errors WP Error object.
627          * @param WP_User|WP_Error $user   WP_User object if the login and reset key match. WP_Error object otherwise.
628          */
629         do_action( 'validate_password_reset', $errors, $user );
630
631         if ( ( ! $errors->get_error_code() ) && isset( $_POST['pass1'] ) && !empty( $_POST['pass1'] ) ) {
632                 reset_password($user, $_POST['pass1']);
633                 setcookie( $rp_cookie, ' ', time() - YEAR_IN_SECONDS, $rp_path, COOKIE_DOMAIN, is_ssl(), true );
634                 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>' );
635                 login_footer();
636                 exit;
637         }
638
639         wp_enqueue_script('utils');
640         wp_enqueue_script('user-profile');
641
642         login_header(__('Reset Password'), '<p class="message reset-pass">' . __('Enter your new password below.') . '</p>', $errors );
643
644 ?>
645 <form name="resetpassform" id="resetpassform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=resetpass', 'login_post' ) ); ?>" method="post" autocomplete="off">
646         <input type="hidden" id="user_login" value="<?php echo esc_attr( $rp_login ); ?>" autocomplete="off" />
647
648         <p>
649                 <label for="pass1"><?php _e('New password') ?><br />
650                 <input type="password" name="pass1" id="pass1" class="input" size="20" value="" autocomplete="off" /></label>
651         </p>
652         <p>
653                 <label for="pass2"><?php _e('Confirm new password') ?><br />
654                 <input type="password" name="pass2" id="pass2" class="input" size="20" value="" autocomplete="off" /></label>
655         </p>
656
657         <div id="pass-strength-result" class="hide-if-no-js"><?php _e('Strength indicator'); ?></div>
658         <p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p>
659         <br class="clear" />
660
661         <?php
662         /**
663          * Fires following the 'Strength indicator' meter in the user password reset form.
664          *
665          * @since 3.9.0
666          *
667          * @param WP_User $user User object of the user whose password is being reset.
668          */
669         do_action( 'resetpass_form', $user );
670         ?>
671         <input type="hidden" name="rp_key" value="<?php echo esc_attr( $rp_key ); ?>" />
672         <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Reset Password'); ?>" /></p>
673 </form>
674
675 <p id="nav">
676 <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
677 <?php
678 if ( get_option( 'users_can_register' ) ) :
679         $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
680
681         /** This filter is documented in wp-includes/general-template.php */
682         echo ' | ' . apply_filters( 'register', $registration_url );
683 endif;
684 ?>
685 </p>
686
687 <?php
688 login_footer('user_pass');
689 break;
690
691 case 'register' :
692         if ( is_multisite() ) {
693                 /**
694                  * Filter the Multisite sign up URL.
695                  *
696                  * @since 3.0.0
697                  *
698                  * @param string $sign_up_url The sign up URL.
699                  */
700                 wp_redirect( apply_filters( 'wp_signup_location', network_site_url( 'wp-signup.php' ) ) );
701                 exit;
702         }
703
704         if ( !get_option('users_can_register') ) {
705                 wp_redirect( site_url('wp-login.php?registration=disabled') );
706                 exit();
707         }
708
709         $user_login = '';
710         $user_email = '';
711         if ( $http_post ) {
712                 $user_login = $_POST['user_login'];
713                 $user_email = $_POST['user_email'];
714                 $errors = register_new_user($user_login, $user_email);
715                 if ( !is_wp_error($errors) ) {
716                         $redirect_to = !empty( $_POST['redirect_to'] ) ? $_POST['redirect_to'] : 'wp-login.php?checkemail=registered';
717                         wp_safe_redirect( $redirect_to );
718                         exit();
719                 }
720         }
721
722         $registration_redirect = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
723         /**
724          * Filter the registration redirect URL.
725          *
726          * @since 3.0.0
727          *
728          * @param string $registration_redirect The redirect destination URL.
729          */
730         $redirect_to = apply_filters( 'registration_redirect', $registration_redirect );
731         login_header(__('Registration Form'), '<p class="message register">' . __('Register For This Site') . '</p>', $errors);
732 ?>
733
734 <form name="registerform" id="registerform" action="<?php echo esc_url( site_url('wp-login.php?action=register', 'login_post') ); ?>" method="post" novalidate="novalidate">
735         <p>
736                 <label for="user_login"><?php _e('Username') ?><br />
737                 <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr(wp_unslash($user_login)); ?>" size="20" /></label>
738         </p>
739         <p>
740                 <label for="user_email"><?php _e('E-mail') ?><br />
741                 <input type="email" name="user_email" id="user_email" class="input" value="<?php echo esc_attr( wp_unslash( $user_email ) ); ?>" size="25" /></label>
742         </p>
743         <?php
744         /**
745          * Fires following the 'E-mail' field in the user registration form.
746          *
747          * @since 2.1.0
748          */
749         do_action( 'register_form' );
750         ?>
751         <p id="reg_passmail"><?php _e('A password will be e-mailed to you.') ?></p>
752         <br class="clear" />
753         <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
754         <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Register'); ?>" /></p>
755 </form>
756
757 <p id="nav">
758 <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a> |
759 <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ) ?>"><?php _e( 'Lost your password?' ); ?></a>
760 </p>
761
762 <?php
763 login_footer('user_login');
764 break;
765
766 case 'login' :
767 default:
768         $secure_cookie = '';
769         $customize_login = isset( $_REQUEST['customize-login'] );
770         if ( $customize_login )
771                 wp_enqueue_script( 'customize-base' );
772
773         // If the user wants ssl but the session is not ssl, force a secure cookie.
774         if ( !empty($_POST['log']) && !force_ssl_admin() ) {
775                 $user_name = sanitize_user($_POST['log']);
776                 if ( $user = get_user_by('login', $user_name) ) {
777                         if ( get_user_option('use_ssl', $user->ID) ) {
778                                 $secure_cookie = true;
779                                 force_ssl_admin(true);
780                         }
781                 }
782         }
783
784         if ( isset( $_REQUEST['redirect_to'] ) ) {
785                 $redirect_to = $_REQUEST['redirect_to'];
786                 // Redirect to https if user wants ssl
787                 if ( $secure_cookie && false !== strpos($redirect_to, 'wp-admin') )
788                         $redirect_to = preg_replace('|^http://|', 'https://', $redirect_to);
789         } else {
790                 $redirect_to = admin_url();
791         }
792
793         $reauth = empty($_REQUEST['reauth']) ? false : true;
794
795         $user = wp_signon( '', $secure_cookie );
796
797         if ( empty( $_COOKIE[ LOGGED_IN_COOKIE ] ) ) {
798                 if ( headers_sent() ) {
799                         $user = new WP_Error( 'test_cookie', sprintf( __( '<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For help, please see <a href="%1$s">this documentation</a> or try the <a href="%2$s">support forums</a>.' ),
800                                 __( 'https://codex.wordpress.org/Cookies' ), __( 'https://wordpress.org/support/' ) ) );
801                 } elseif ( isset( $_POST['testcookie'] ) && empty( $_COOKIE[ TEST_COOKIE ] ) ) {
802                         // If cookies are disabled we can't log in even with a valid user+pass
803                         $user = new WP_Error( 'test_cookie', sprintf( __( '<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href="%s">enable cookies</a> to use WordPress.' ),
804                                 __( 'https://codex.wordpress.org/Cookies' ) ) );
805                 }
806         }
807
808         $requested_redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
809         /**
810          * Filter the login redirect URL.
811          *
812          * @since 3.0.0
813          *
814          * @param string           $redirect_to           The redirect destination URL.
815          * @param string           $requested_redirect_to The requested redirect destination URL passed as a parameter.
816          * @param WP_User|WP_Error $user                  WP_User object if login was successful, WP_Error object otherwise.
817          */
818         $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user );
819
820         if ( !is_wp_error($user) && !$reauth ) {
821                 if ( $interim_login ) {
822                         $message = '<p class="message">' . __('You have logged in successfully.') . '</p>';
823                         $interim_login = 'success';
824                         login_header( '', $message ); ?>
825                         </div>
826                         <?php
827                         /** This action is documented in wp-login.php */
828                         do_action( 'login_footer' ); ?>
829                         <?php if ( $customize_login ) : ?>
830                                 <script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script>
831                         <?php endif; ?>
832                         </body></html>
833 <?php           exit;
834                 }
835
836                 if ( ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) ) {
837                         // 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.
838                         if ( is_multisite() && !get_active_blog_for_user($user->ID) && !is_super_admin( $user->ID ) )
839                                 $redirect_to = user_admin_url();
840                         elseif ( is_multisite() && !$user->has_cap('read') )
841                                 $redirect_to = get_dashboard_url( $user->ID );
842                         elseif ( !$user->has_cap('edit_posts') )
843                                 $redirect_to = admin_url('profile.php');
844                 }
845                 wp_safe_redirect($redirect_to);
846                 exit();
847         }
848
849         $errors = $user;
850         // Clear errors if loggedout is set.
851         if ( !empty($_GET['loggedout']) || $reauth )
852                 $errors = new WP_Error();
853
854         if ( $interim_login ) {
855                 if ( ! $errors->get_error_code() )
856                         $errors->add('expired', __('Session expired. Please log in again. You will not move away from this page.'), 'message');
857         } else {
858                 // Some parts of this script use the main login form to display a message
859                 if              ( isset($_GET['loggedout']) && true == $_GET['loggedout'] )
860                         $errors->add('loggedout', __('You are now logged out.'), 'message');
861                 elseif  ( isset($_GET['registration']) && 'disabled' == $_GET['registration'] )
862                         $errors->add('registerdisabled', __('User registration is currently not allowed.'));
863                 elseif  ( isset($_GET['checkemail']) && 'confirm' == $_GET['checkemail'] )
864                         $errors->add('confirm', __('Check your e-mail for the confirmation link.'), 'message');
865                 elseif  ( isset($_GET['checkemail']) && 'newpass' == $_GET['checkemail'] )
866                         $errors->add('newpass', __('Check your e-mail for your new password.'), 'message');
867                 elseif  ( isset($_GET['checkemail']) && 'registered' == $_GET['checkemail'] )
868                         $errors->add('registered', __('Registration complete. Please check your e-mail.'), 'message');
869                 elseif ( strpos( $redirect_to, 'about.php?updated' ) )
870                         $errors->add('updated', __( '<strong>You have successfully updated WordPress!</strong> Please log back in to see what&#8217;s new.' ), 'message' );
871         }
872
873         /**
874          * Filter the login page errors.
875          *
876          * @since 3.6.0
877          *
878          * @param object $errors      WP Error object.
879          * @param string $redirect_to Redirect destination URL.
880          */
881         $errors = apply_filters( 'wp_login_errors', $errors, $redirect_to );
882
883         // Clear any stale cookies.
884         if ( $reauth )
885                 wp_clear_auth_cookie();
886
887         login_header(__('Log In'), '', $errors);
888
889         if ( isset($_POST['log']) )
890                 $user_login = ( 'incorrect_password' == $errors->get_error_code() || 'empty_password' == $errors->get_error_code() ) ? esc_attr(wp_unslash($_POST['log'])) : '';
891         $rememberme = ! empty( $_POST['rememberme'] );
892
893         if ( ! empty( $errors->errors ) ) {
894                 $aria_describedby_error = ' aria-describedby="login_error"';
895         } else {
896                 $aria_describedby_error = '';
897         }
898 ?>
899
900 <form name="loginform" id="loginform" action="<?php echo esc_url( site_url( 'wp-login.php', 'login_post' ) ); ?>" method="post">
901         <p>
902                 <label for="user_login"><?php _e('Username') ?><br />
903                 <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>
904         </p>
905         <p>
906                 <label for="user_pass"><?php _e('Password') ?><br />
907                 <input type="password" name="pwd" id="user_pass"<?php echo $aria_describedby_error; ?> class="input" value="" size="20" /></label>
908         </p>
909         <?php
910         /**
911          * Fires following the 'Password' field in the login form.
912          *
913          * @since 2.1.0
914          */
915         do_action( 'login_form' );
916         ?>
917         <p class="forgetmenot"><label for="rememberme"><input name="rememberme" type="checkbox" id="rememberme" value="forever" <?php checked( $rememberme ); ?> /> <?php esc_attr_e('Remember Me'); ?></label></p>
918         <p class="submit">
919                 <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Log In'); ?>" />
920 <?php   if ( $interim_login ) { ?>
921                 <input type="hidden" name="interim-login" value="1" />
922 <?php   } else { ?>
923                 <input type="hidden" name="redirect_to" value="<?php echo esc_attr($redirect_to); ?>" />
924 <?php   } ?>
925 <?php   if ( $customize_login ) : ?>
926                 <input type="hidden" name="customize-login" value="1" />
927 <?php   endif; ?>
928                 <input type="hidden" name="testcookie" value="1" />
929         </p>
930 </form>
931
932 <?php if ( ! $interim_login ) { ?>
933 <p id="nav">
934 <?php if ( ! isset( $_GET['checkemail'] ) || ! in_array( $_GET['checkemail'], array( 'confirm', 'newpass' ) ) ) :
935         if ( get_option( 'users_can_register' ) ) :
936                 $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
937
938                 /** This filter is documented in wp-includes/general-template.php */
939                 echo apply_filters( 'register', $registration_url ) . ' | ';
940         endif;
941         ?>
942         <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ); ?>"><?php _e( 'Lost your password?' ); ?></a>
943 <?php endif; ?>
944 </p>
945 <?php } ?>
946
947 <script type="text/javascript">
948 function wp_attempt_focus(){
949 setTimeout( function(){ try{
950 <?php if ( $user_login ) { ?>
951 d = document.getElementById('user_pass');
952 d.value = '';
953 <?php } else { ?>
954 d = document.getElementById('user_login');
955 <?php if ( 'invalid_username' == $errors->get_error_code() ) { ?>
956 if( d.value != '' )
957 d.value = '';
958 <?php
959 }
960 }?>
961 d.focus();
962 d.select();
963 } catch(e){}
964 }, 200);
965 }
966
967 <?php if ( !$error ) { ?>
968 wp_attempt_focus();
969 <?php } ?>
970 if(typeof wpOnload=='function')wpOnload();
971 <?php if ( $interim_login ) { ?>
972 (function(){
973 try {
974         var i, links = document.getElementsByTagName('a');
975         for ( i in links ) {
976                 if ( links[i].href )
977                         links[i].target = '_blank';
978         }
979 } catch(e){}
980 }());
981 <?php } ?>
982 </script>
983
984 <?php
985 login_footer();
986 break;
987 } // end action switch