Make WordPress Core

Ticket #13045: wp-login.php

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