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