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