]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-login.php
WordPress 4.3.1-scripts
[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 /**
245  * @since 3.0.0
246  */
247 function wp_shake_js() {
248         if ( wp_is_mobile() )
249                 return;
250 ?>
251 <script type="text/javascript">
252 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();}}};
253 function s(id,pos){g(id).left=pos+'px';}
254 function g(id){return document.getElementById(id).style;}
255 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){}}}
256 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);});
257 </script>
258 <?php
259 }
260
261 /**
262  * @since 3.7.0
263  */
264 function wp_login_viewport_meta() {
265         ?>
266         <meta name="viewport" content="width=device-width" />
267         <?php
268 }
269
270 /**
271  * Handles sending password retrieval email to user.
272  *
273  * @global wpdb         $wpdb      WordPress database abstraction object.
274  * @global PasswordHash $wp_hasher Portable PHP password hashing framework.
275  *
276  * @return bool|WP_Error True: when finish. WP_Error on error
277  */
278 function retrieve_password() {
279         global $wpdb, $wp_hasher;
280
281         $errors = new WP_Error();
282
283         if ( empty( $_POST['user_login'] ) ) {
284                 $errors->add('empty_username', __('<strong>ERROR</strong>: Enter a username or e-mail address.'));
285         } elseif ( strpos( $_POST['user_login'], '@' ) ) {
286                 $user_data = get_user_by( 'email', trim( $_POST['user_login'] ) );
287                 if ( empty( $user_data ) )
288                         $errors->add('invalid_email', __('<strong>ERROR</strong>: There is no user registered with that email address.'));
289         } else {
290                 $login = trim($_POST['user_login']);
291                 $user_data = get_user_by('login', $login);
292         }
293
294         /**
295          * Fires before errors are returned from a password reset request.
296          *
297          * @since 2.1.0
298          */
299         do_action( 'lostpassword_post' );
300
301         if ( $errors->get_error_code() )
302                 return $errors;
303
304         if ( !$user_data ) {
305                 $errors->add('invalidcombo', __('<strong>ERROR</strong>: Invalid username or e-mail.'));
306                 return $errors;
307         }
308
309         // Redefining user_login ensures we return the right case in the email.
310         $user_login = $user_data->user_login;
311         $user_email = $user_data->user_email;
312
313         /**
314          * Fires before a new password is retrieved.
315          *
316          * @since 1.5.0
317          * @deprecated 1.5.1 Misspelled. Use 'retrieve_password' hook instead.
318          *
319          * @param string $user_login The user login name.
320          */
321         do_action( 'retreive_password', $user_login );
322
323         /**
324          * Fires before a new password is retrieved.
325          *
326          * @since 1.5.1
327          *
328          * @param string $user_login The user login name.
329          */
330         do_action( 'retrieve_password', $user_login );
331
332         /**
333          * Filter whether to allow a password to be reset.
334          *
335          * @since 2.7.0
336          *
337          * @param bool true           Whether to allow the password to be reset. Default true.
338          * @param int  $user_data->ID The ID of the user attempting to reset a password.
339          */
340         $allow = apply_filters( 'allow_password_reset', true, $user_data->ID );
341
342         if ( ! $allow ) {
343                 return new WP_Error( 'no_password_reset', __('Password reset is not allowed for this user') );
344         } elseif ( is_wp_error( $allow ) ) {
345                 return $allow;
346         }
347
348         // Generate something random for a password reset key.
349         $key = wp_generate_password( 20, false );
350
351         /**
352          * Fires when a password reset key is generated.
353          *
354          * @since 2.5.0
355          *
356          * @param string $user_login The username for the user.
357          * @param string $key        The generated password reset key.
358          */
359         do_action( 'retrieve_password_key', $user_login, $key );
360
361         // Now insert the key, hashed, into the DB.
362         if ( empty( $wp_hasher ) ) {
363                 require_once ABSPATH . WPINC . '/class-phpass.php';
364                 $wp_hasher = new PasswordHash( 8, true );
365         }
366         $hashed = time() . ':' . $wp_hasher->HashPassword( $key );
367         $wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user_login ) );
368
369         $message = __('Someone requested that the password be reset for the following account:') . "\r\n\r\n";
370         $message .= network_home_url( '/' ) . "\r\n\r\n";
371         $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
372         $message .= __('If this was a mistake, just ignore this email and nothing will happen.') . "\r\n\r\n";
373         $message .= __('To reset your password, visit the following address:') . "\r\n\r\n";
374         $message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n";
375
376         if ( is_multisite() )
377                 $blogname = $GLOBALS['current_site']->site_name;
378         else
379                 /*
380                  * The blogname option is escaped with esc_html on the way into the database
381                  * in sanitize_option we want to reverse this for the plain text arena of emails.
382                  */
383                 $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
384
385         $title = sprintf( __('[%s] Password Reset'), $blogname );
386
387         /**
388          * Filter the subject of the password reset email.
389          *
390          * @since 2.8.0
391          *
392          * @param string $title Default email title.
393          */
394         $title = apply_filters( 'retrieve_password_title', $title );
395
396         /**
397          * Filter the message body of the password reset mail.
398          *
399          * @since 2.8.0
400          * @since 4.1.0 Added `$user_login` and `$user_data` parameters.
401          *
402          * @param string  $message    Default mail message.
403          * @param string  $key        The activation key.
404          * @param string  $user_login The username for the user.
405          * @param WP_User $user_data  WP_User object.
406          */
407         $message = apply_filters( 'retrieve_password_message', $message, $key, $user_login, $user_data );
408
409         if ( $message && !wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) )
410                 wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') );
411
412         return true;
413 }
414
415 //
416 // Main
417 //
418
419 $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'login';
420 $errors = new WP_Error();
421
422 if ( isset($_GET['key']) )
423         $action = 'resetpass';
424
425 // validate action so as to default to the login screen
426 if ( !in_array( $action, array( 'postpass', 'logout', 'lostpassword', 'retrievepassword', 'resetpass', 'rp', 'register', 'login' ), true ) && false === has_filter( 'login_form_' . $action ) )
427         $action = 'login';
428
429 nocache_headers();
430
431 header('Content-Type: '.get_bloginfo('html_type').'; charset='.get_bloginfo('charset'));
432
433 if ( defined( 'RELOCATE' ) && RELOCATE ) { // Move flag is set
434         if ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) )
435                 $_SERVER['PHP_SELF'] = str_replace( $_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF'] );
436
437         $url = dirname( set_url_scheme( 'http://' .  $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'] ) );
438         if ( $url != get_option( 'siteurl' ) )
439                 update_option( 'siteurl', $url );
440 }
441
442 //Set a cookie now to see if they are supported by the browser.
443 $secure = ( 'https' === parse_url( site_url(), PHP_URL_SCHEME ) && 'https' === parse_url( home_url(), PHP_URL_SCHEME ) );
444 setcookie( TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN, $secure );
445 if ( SITECOOKIEPATH != COOKIEPATH )
446         setcookie( TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN, $secure );
447
448 /**
449  * Fires when the login form is initialized.
450  *
451  * @since 3.2.0
452  */
453 do_action( 'login_init' );
454 /**
455  * Fires before a specified login form action.
456  *
457  * The dynamic portion of the hook name, `$action`, refers to the action
458  * that brought the visitor to the login form. Actions include 'postpass',
459  * 'logout', 'lostpassword', etc.
460  *
461  * @since 2.8.0
462  */
463 do_action( 'login_form_' . $action );
464
465 $http_post = ('POST' == $_SERVER['REQUEST_METHOD']);
466 $interim_login = isset($_REQUEST['interim-login']);
467
468 switch ($action) {
469
470 case 'postpass' :
471         require_once ABSPATH . WPINC . '/class-phpass.php';
472         $hasher = new PasswordHash( 8, true );
473
474         /**
475          * Filter the life span of the post password cookie.
476          *
477          * By default, the cookie expires 10 days from creation. To turn this
478          * into a session cookie, return 0.
479          *
480          * @since 3.7.0
481          *
482          * @param int $expires The expiry time, as passed to setcookie().
483          */
484         $expire = apply_filters( 'post_password_expires', time() + 10 * DAY_IN_SECONDS );
485         $secure = ( 'https' === parse_url( home_url(), PHP_URL_SCHEME ) );
486         setcookie( 'wp-postpass_' . COOKIEHASH, $hasher->HashPassword( wp_unslash( $_POST['post_password'] ) ), $expire, COOKIEPATH, COOKIE_DOMAIN, $secure );
487
488         wp_safe_redirect( wp_get_referer() );
489         exit();
490
491 case 'logout' :
492         check_admin_referer('log-out');
493
494         $user = wp_get_current_user();
495
496         wp_logout();
497
498         if ( ! empty( $_REQUEST['redirect_to'] ) ) {
499                 $redirect_to = $requested_redirect_to = $_REQUEST['redirect_to'];
500         } else {
501                 $redirect_to = 'wp-login.php?loggedout=true';
502                 $requested_redirect_to = '';
503         }
504
505         /**
506          * Filter the log out redirect URL.
507          *
508          * @since 4.2.0
509          *
510          * @param string  $redirect_to           The redirect destination URL.
511          * @param string  $requested_redirect_to The requested redirect destination URL passed as a parameter.
512          * @param WP_User $user                  The WP_User object for the user that's logging out.
513          */
514         $redirect_to = apply_filters( 'logout_redirect', $redirect_to, $requested_redirect_to, $user );
515         wp_safe_redirect( $redirect_to );
516         exit();
517
518 case 'lostpassword' :
519 case 'retrievepassword' :
520
521         if ( $http_post ) {
522                 $errors = retrieve_password();
523                 if ( !is_wp_error($errors) ) {
524                         $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : 'wp-login.php?checkemail=confirm';
525                         wp_safe_redirect( $redirect_to );
526                         exit();
527                 }
528         }
529
530         if ( isset( $_GET['error'] ) ) {
531                 if ( 'invalidkey' == $_GET['error'] ) {
532                         $errors->add( 'invalidkey', __( 'Your password reset link appears to be invalid. Please request a new link below.' ) );
533                 } elseif ( 'expiredkey' == $_GET['error'] ) {
534                         $errors->add( 'expiredkey', __( 'Your password reset link has expired. Please request a new link below.' ) );
535                 }
536         }
537
538         $lostpassword_redirect = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
539         /**
540          * Filter the URL redirected to after submitting the lostpassword/retrievepassword form.
541          *
542          * @since 3.0.0
543          *
544          * @param string $lostpassword_redirect The redirect destination URL.
545          */
546         $redirect_to = apply_filters( 'lostpassword_redirect', $lostpassword_redirect );
547
548         /**
549          * Fires before the lost password form.
550          *
551          * @since 1.5.1
552          */
553         do_action( 'lost_password' );
554
555         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);
556
557         $user_login = isset($_POST['user_login']) ? wp_unslash($_POST['user_login']) : '';
558
559 ?>
560
561 <form name="lostpasswordform" id="lostpasswordform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=lostpassword', 'login_post' ) ); ?>" method="post">
562         <p>
563                 <label for="user_login" ><?php _e('Username or E-mail:') ?><br />
564                 <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" /></label>
565         </p>
566         <?php
567         /**
568          * Fires inside the lostpassword form tags, before the hidden fields.
569          *
570          * @since 2.1.0
571          */
572         do_action( 'lostpassword_form' ); ?>
573         <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
574         <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>
575 </form>
576
577 <p id="nav">
578 <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e('Log in') ?></a>
579 <?php
580 if ( get_option( 'users_can_register' ) ) :
581         $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
582
583         /** This filter is documented in wp-includes/general-template.php */
584         echo ' | ' . apply_filters( 'register', $registration_url );
585 endif;
586 ?>
587 </p>
588
589 <?php
590 login_footer('user_login');
591 break;
592
593 case 'resetpass' :
594 case 'rp' :
595         list( $rp_path ) = explode( '?', wp_unslash( $_SERVER['REQUEST_URI'] ) );
596         $rp_cookie = 'wp-resetpass-' . COOKIEHASH;
597         if ( isset( $_GET['key'] ) ) {
598                 $value = sprintf( '%s:%s', wp_unslash( $_GET['login'] ), wp_unslash( $_GET['key'] ) );
599                 setcookie( $rp_cookie, $value, 0, $rp_path, COOKIE_DOMAIN, is_ssl(), true );
600                 wp_safe_redirect( remove_query_arg( array( 'key', 'login' ) ) );
601                 exit;
602         }
603
604         if ( isset( $_COOKIE[ $rp_cookie ] ) && 0 < strpos( $_COOKIE[ $rp_cookie ], ':' ) ) {
605                 list( $rp_login, $rp_key ) = explode( ':', wp_unslash( $_COOKIE[ $rp_cookie ] ), 2 );
606                 $user = check_password_reset_key( $rp_key, $rp_login );
607                 if ( isset( $_POST['pass1'] ) && ! hash_equals( $rp_key, $_POST['rp_key'] ) ) {
608                         $user = false;
609                 }
610         } else {
611                 $user = false;
612         }
613
614         if ( ! $user || is_wp_error( $user ) ) {
615                 setcookie( $rp_cookie, ' ', time() - YEAR_IN_SECONDS, $rp_path, COOKIE_DOMAIN, is_ssl(), true );
616                 if ( $user && $user->get_error_code() === 'expired_key' )
617                         wp_redirect( site_url( 'wp-login.php?action=lostpassword&error=expiredkey' ) );
618                 else
619                         wp_redirect( site_url( 'wp-login.php?action=lostpassword&error=invalidkey' ) );
620                 exit;
621         }
622
623         $errors = new WP_Error();
624
625         if ( isset($_POST['pass1']) && $_POST['pass1'] != $_POST['pass2'] )
626                 $errors->add( 'password_reset_mismatch', __( 'The passwords do not match.' ) );
627
628         /**
629          * Fires before the password reset procedure is validated.
630          *
631          * @since 3.5.0
632          *
633          * @param object           $errors WP Error object.
634          * @param WP_User|WP_Error $user   WP_User object if the login and reset key match. WP_Error object otherwise.
635          */
636         do_action( 'validate_password_reset', $errors, $user );
637
638         if ( ( ! $errors->get_error_code() ) && isset( $_POST['pass1'] ) && !empty( $_POST['pass1'] ) ) {
639                 reset_password($user, $_POST['pass1']);
640                 setcookie( $rp_cookie, ' ', time() - YEAR_IN_SECONDS, $rp_path, COOKIE_DOMAIN, is_ssl(), true );
641                 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>' );
642                 login_footer();
643                 exit;
644         }
645
646         wp_enqueue_script('utils');
647         wp_enqueue_script('user-profile');
648
649         login_header(__('Reset Password'), '<p class="message reset-pass">' . __('Enter your new password below.') . '</p>', $errors );
650
651 ?>
652 <form name="resetpassform" id="resetpassform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=resetpass', 'login_post' ) ); ?>" method="post" autocomplete="off">
653         <input type="hidden" id="user_login" value="<?php echo esc_attr( $rp_login ); ?>" autocomplete="off" />
654
655         <p class="user-pass1-wrap">
656                 <label for="pass1"><?php _e('New password') ?></label><br />
657                 <div class="wp-pwd">
658                         <span class="password-input-wrapper">
659                                 <input type="password" data-reveal="1" data-pw="<?php echo esc_attr( wp_generate_password( 16 ) ); ?>" name="pass1" id="pass1" class="input" size="20" value="" autocomplete="off" aria-describedby="pass-strength-result" />
660                         </span>
661                         <div id="pass-strength-result" class="hide-if-no-js" aria-live="polite"><?php _e( 'Strength indicator' ); ?></div>
662                 </div>
663         </p>
664         <p class="user-pass2-wrap">
665                 <label for="pass2"><?php _e('Confirm new password') ?></label><br />
666                 <input type="password" name="pass2" id="pass2" class="input" size="20" value="" autocomplete="off" />
667         </p>
668
669         <p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p>
670         <br class="clear" />
671
672         <?php
673         /**
674          * Fires following the 'Strength indicator' meter in the user password reset form.
675          *
676          * @since 3.9.0
677          *
678          * @param WP_User $user User object of the user whose password is being reset.
679          */
680         do_action( 'resetpass_form', $user );
681         ?>
682         <input type="hidden" name="rp_key" value="<?php echo esc_attr( $rp_key ); ?>" />
683         <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>
684 </form>
685
686 <p id="nav">
687 <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
688 <?php
689 if ( get_option( 'users_can_register' ) ) :
690         $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
691
692         /** This filter is documented in wp-includes/general-template.php */
693         echo ' | ' . apply_filters( 'register', $registration_url );
694 endif;
695 ?>
696 </p>
697
698 <?php
699 login_footer('user_pass');
700 break;
701
702 case 'register' :
703         if ( is_multisite() ) {
704                 /**
705                  * Filter the Multisite sign up URL.
706                  *
707                  * @since 3.0.0
708                  *
709                  * @param string $sign_up_url The sign up URL.
710                  */
711                 wp_redirect( apply_filters( 'wp_signup_location', network_site_url( 'wp-signup.php' ) ) );
712                 exit;
713         }
714
715         if ( !get_option('users_can_register') ) {
716                 wp_redirect( site_url('wp-login.php?registration=disabled') );
717                 exit();
718         }
719
720         $user_login = '';
721         $user_email = '';
722         if ( $http_post ) {
723                 $user_login = $_POST['user_login'];
724                 $user_email = $_POST['user_email'];
725                 $errors = register_new_user($user_login, $user_email);
726                 if ( !is_wp_error($errors) ) {
727                         $redirect_to = !empty( $_POST['redirect_to'] ) ? $_POST['redirect_to'] : 'wp-login.php?checkemail=registered';
728                         wp_safe_redirect( $redirect_to );
729                         exit();
730                 }
731         }
732
733         $registration_redirect = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
734         /**
735          * Filter the registration redirect URL.
736          *
737          * @since 3.0.0
738          *
739          * @param string $registration_redirect The redirect destination URL.
740          */
741         $redirect_to = apply_filters( 'registration_redirect', $registration_redirect );
742         login_header(__('Registration Form'), '<p class="message register">' . __('Register For This Site') . '</p>', $errors);
743 ?>
744
745 <form name="registerform" id="registerform" action="<?php echo esc_url( site_url('wp-login.php?action=register', 'login_post') ); ?>" method="post" novalidate="novalidate">
746         <p>
747                 <label for="user_login"><?php _e('Username') ?><br />
748                 <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr(wp_unslash($user_login)); ?>" size="20" /></label>
749         </p>
750         <p>
751                 <label for="user_email"><?php _e('E-mail') ?><br />
752                 <input type="email" name="user_email" id="user_email" class="input" value="<?php echo esc_attr( wp_unslash( $user_email ) ); ?>" size="25" /></label>
753         </p>
754         <?php
755         /**
756          * Fires following the 'E-mail' field in the user registration form.
757          *
758          * @since 2.1.0
759          */
760         do_action( 'register_form' );
761         ?>
762         <p id="reg_passmail"><?php _e( 'Registration confirmation will be e-mailed to you.' ); ?></p>
763         <br class="clear" />
764         <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
765         <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>
766 </form>
767
768 <p id="nav">
769 <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a> |
770 <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ) ?>"><?php _e( 'Lost your password?' ); ?></a>
771 </p>
772
773 <?php
774 login_footer('user_login');
775 break;
776
777 case 'login' :
778 default:
779         $secure_cookie = '';
780         $customize_login = isset( $_REQUEST['customize-login'] );
781         if ( $customize_login )
782                 wp_enqueue_script( 'customize-base' );
783
784         // If the user wants ssl but the session is not ssl, force a secure cookie.
785         if ( !empty($_POST['log']) && !force_ssl_admin() ) {
786                 $user_name = sanitize_user($_POST['log']);
787                 if ( $user = get_user_by('login', $user_name) ) {
788                         if ( get_user_option('use_ssl', $user->ID) ) {
789                                 $secure_cookie = true;
790                                 force_ssl_admin(true);
791                         }
792                 }
793         }
794
795         if ( isset( $_REQUEST['redirect_to'] ) ) {
796                 $redirect_to = $_REQUEST['redirect_to'];
797                 // Redirect to https if user wants ssl
798                 if ( $secure_cookie && false !== strpos($redirect_to, 'wp-admin') )
799                         $redirect_to = preg_replace('|^http://|', 'https://', $redirect_to);
800         } else {
801                 $redirect_to = admin_url();
802         }
803
804         $reauth = empty($_REQUEST['reauth']) ? false : true;
805
806         $user = wp_signon( '', $secure_cookie );
807
808         if ( empty( $_COOKIE[ LOGGED_IN_COOKIE ] ) ) {
809                 if ( headers_sent() ) {
810                         $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>.' ),
811                                 __( 'https://codex.wordpress.org/Cookies' ), __( 'https://wordpress.org/support/' ) ) );
812                 } elseif ( isset( $_POST['testcookie'] ) && empty( $_COOKIE[ TEST_COOKIE ] ) ) {
813                         // If cookies are disabled we can't log in even with a valid user+pass
814                         $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.' ),
815                                 __( 'https://codex.wordpress.org/Cookies' ) ) );
816                 }
817         }
818
819         $requested_redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
820         /**
821          * Filter the login redirect URL.
822          *
823          * @since 3.0.0
824          *
825          * @param string           $redirect_to           The redirect destination URL.
826          * @param string           $requested_redirect_to The requested redirect destination URL passed as a parameter.
827          * @param WP_User|WP_Error $user                  WP_User object if login was successful, WP_Error object otherwise.
828          */
829         $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user );
830
831         if ( !is_wp_error($user) && !$reauth ) {
832                 if ( $interim_login ) {
833                         $message = '<p class="message">' . __('You have logged in successfully.') . '</p>';
834                         $interim_login = 'success';
835                         login_header( '', $message ); ?>
836                         </div>
837                         <?php
838                         /** This action is documented in wp-login.php */
839                         do_action( 'login_footer' ); ?>
840                         <?php if ( $customize_login ) : ?>
841                                 <script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script>
842                         <?php endif; ?>
843                         </body></html>
844 <?php           exit;
845                 }
846
847                 if ( ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) ) {
848                         // 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.
849                         if ( is_multisite() && !get_active_blog_for_user($user->ID) && !is_super_admin( $user->ID ) )
850                                 $redirect_to = user_admin_url();
851                         elseif ( is_multisite() && !$user->has_cap('read') )
852                                 $redirect_to = get_dashboard_url( $user->ID );
853                         elseif ( !$user->has_cap('edit_posts') )
854                                 $redirect_to = admin_url('profile.php');
855                 }
856                 wp_safe_redirect($redirect_to);
857                 exit();
858         }
859
860         $errors = $user;
861         // Clear errors if loggedout is set.
862         if ( !empty($_GET['loggedout']) || $reauth )
863                 $errors = new WP_Error();
864
865         if ( $interim_login ) {
866                 if ( ! $errors->get_error_code() )
867                         $errors->add('expired', __('Session expired. Please log in again. You will not move away from this page.'), 'message');
868         } else {
869                 // Some parts of this script use the main login form to display a message
870                 if              ( isset($_GET['loggedout']) && true == $_GET['loggedout'] )
871                         $errors->add('loggedout', __('You are now logged out.'), 'message');
872                 elseif  ( isset($_GET['registration']) && 'disabled' == $_GET['registration'] )
873                         $errors->add('registerdisabled', __('User registration is currently not allowed.'));
874                 elseif  ( isset($_GET['checkemail']) && 'confirm' == $_GET['checkemail'] )
875                         $errors->add('confirm', __('Check your e-mail for the confirmation link.'), 'message');
876                 elseif  ( isset($_GET['checkemail']) && 'newpass' == $_GET['checkemail'] )
877                         $errors->add('newpass', __('Check your e-mail for your new password.'), 'message');
878                 elseif  ( isset($_GET['checkemail']) && 'registered' == $_GET['checkemail'] )
879                         $errors->add('registered', __('Registration complete. Please check your e-mail.'), 'message');
880                 elseif ( strpos( $redirect_to, 'about.php?updated' ) )
881                         $errors->add('updated', __( '<strong>You have successfully updated WordPress!</strong> Please log back in to see what&#8217;s new.' ), 'message' );
882         }
883
884         /**
885          * Filter the login page errors.
886          *
887          * @since 3.6.0
888          *
889          * @param object $errors      WP Error object.
890          * @param string $redirect_to Redirect destination URL.
891          */
892         $errors = apply_filters( 'wp_login_errors', $errors, $redirect_to );
893
894         // Clear any stale cookies.
895         if ( $reauth )
896                 wp_clear_auth_cookie();
897
898         login_header(__('Log In'), '', $errors);
899
900         if ( isset($_POST['log']) )
901                 $user_login = ( 'incorrect_password' == $errors->get_error_code() || 'empty_password' == $errors->get_error_code() ) ? esc_attr(wp_unslash($_POST['log'])) : '';
902         $rememberme = ! empty( $_POST['rememberme'] );
903
904         if ( ! empty( $errors->errors ) ) {
905                 $aria_describedby_error = ' aria-describedby="login_error"';
906         } else {
907                 $aria_describedby_error = '';
908         }
909 ?>
910
911 <form name="loginform" id="loginform" action="<?php echo esc_url( site_url( 'wp-login.php', 'login_post' ) ); ?>" method="post">
912         <p>
913                 <label for="user_login"><?php _e('Username') ?><br />
914                 <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>
915         </p>
916         <p>
917                 <label for="user_pass"><?php _e('Password') ?><br />
918                 <input type="password" name="pwd" id="user_pass"<?php echo $aria_describedby_error; ?> class="input" value="" size="20" /></label>
919         </p>
920         <?php
921         /**
922          * Fires following the 'Password' field in the login form.
923          *
924          * @since 2.1.0
925          */
926         do_action( 'login_form' );
927         ?>
928         <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>
929         <p class="submit">
930                 <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Log In'); ?>" />
931 <?php   if ( $interim_login ) { ?>
932                 <input type="hidden" name="interim-login" value="1" />
933 <?php   } else { ?>
934                 <input type="hidden" name="redirect_to" value="<?php echo esc_attr($redirect_to); ?>" />
935 <?php   } ?>
936 <?php   if ( $customize_login ) : ?>
937                 <input type="hidden" name="customize-login" value="1" />
938 <?php   endif; ?>
939                 <input type="hidden" name="testcookie" value="1" />
940         </p>
941 </form>
942
943 <?php if ( ! $interim_login ) { ?>
944 <p id="nav">
945 <?php if ( ! isset( $_GET['checkemail'] ) || ! in_array( $_GET['checkemail'], array( 'confirm', 'newpass' ) ) ) :
946         if ( get_option( 'users_can_register' ) ) :
947                 $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
948
949                 /** This filter is documented in wp-includes/general-template.php */
950                 echo apply_filters( 'register', $registration_url ) . ' | ';
951         endif;
952         ?>
953         <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ); ?>"><?php _e( 'Lost your password?' ); ?></a>
954 <?php endif; ?>
955 </p>
956 <?php } ?>
957
958 <script type="text/javascript">
959 function wp_attempt_focus(){
960 setTimeout( function(){ try{
961 <?php if ( $user_login ) { ?>
962 d = document.getElementById('user_pass');
963 d.value = '';
964 <?php } else { ?>
965 d = document.getElementById('user_login');
966 <?php if ( 'invalid_username' == $errors->get_error_code() ) { ?>
967 if( d.value != '' )
968 d.value = '';
969 <?php
970 }
971 }?>
972 d.focus();
973 d.select();
974 } catch(e){}
975 }, 200);
976 }
977
978 <?php if ( !$error ) { ?>
979 wp_attempt_focus();
980 <?php } ?>
981 if(typeof wpOnload=='function')wpOnload();
982 <?php if ( $interim_login ) { ?>
983 (function(){
984 try {
985         var i, links = document.getElementsByTagName('a');
986         for ( i in links ) {
987                 if ( links[i].href )
988                         links[i].target = '_blank';
989         }
990 } catch(e){}
991 }());
992 <?php } ?>
993 </script>
994
995 <?php
996 login_footer();
997 break;
998 } // end action switch