Cambios hechos por Fernando
git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@171 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
This commit is contained in:
parent
b93f888c0d
commit
b6e59c1061
10
wp-login.php
10
wp-login.php
@ -89,6 +89,7 @@ function login_header($title = 'Log In', $message = '', $wp_error = '') {
|
||||
?>
|
||||
</head>
|
||||
<body class="login<?php if ( wp_is_mobile() ) echo ' mobile'; ?>">
|
||||
<div id="container">
|
||||
<div id="login">
|
||||
<h1><a href="<?php echo esc_url( $login_header_url ); ?>" title="<?php echo esc_attr( $login_header_title ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
|
||||
<?php
|
||||
@ -553,7 +554,7 @@ case 'register' :
|
||||
|
||||
<p id="nav">
|
||||
<a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a> |
|
||||
<a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ) ?>"><?php _e( 'Lost your password?' ); ?></a>
|
||||
<a id="forgotYourPassword" href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ) ?>"><?php _e( 'Forgot your password?' ); ?></a>
|
||||
</p>
|
||||
|
||||
<?php
|
||||
@ -611,6 +612,7 @@ default:
|
||||
<input type="button" class="button-primary" value="<?php esc_attr_e('Close'); ?>" onclick="window.close()" /></p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php do_action( 'login_footer' ); ?>
|
||||
<?php if ( $customize_login ) : ?>
|
||||
<script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script>
|
||||
@ -678,7 +680,7 @@ default:
|
||||
<input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label>
|
||||
</p>
|
||||
<?php do_action('login_form'); ?>
|
||||
<p class="forgetmenot"><label for="rememberme"><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90"<?php checked( $rememberme ); ?> /> <?php esc_attr_e('Remember Me'); ?></label></p>
|
||||
<p class="forgetmenot"><label for="rememberme"><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90"<?php checked( $rememberme ); ?> /> <?php esc_attr_e('Keep me logged in'); ?></label></p>
|
||||
<p class="submit">
|
||||
<input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Log In'); ?>" tabindex="100" />
|
||||
<?php if ( $interim_login ) { ?>
|
||||
@ -698,9 +700,9 @@ default:
|
||||
<?php if ( isset($_GET['checkemail']) && in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?>
|
||||
<?php elseif ( get_option('users_can_register') ) : ?>
|
||||
<a href="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login' ) ); ?>"><?php _e( 'Register' ); ?></a> |
|
||||
<a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ); ?>"><?php _e( 'Lost your password?' ); ?></a>
|
||||
<a id="forgotYourPassword" href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ); ?>"><?php _e( 'Forgot your password?' ); ?></a>
|
||||
<?php else : ?>
|
||||
<a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ); ?>"><?php _e( 'Lost your password?' ); ?></a>
|
||||
<a id="forgotYourPassword" href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ); ?>"><?php _e( 'Forgot your password?' ); ?></a>
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
<?php } ?>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user