mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-16 07:35:39 +01:00
Reset Password: Move <div>
out of <p>
in wp-login.php
.
Props ldinclaux. Fixes #33892. Built from https://develop.svn.wordpress.org/trunk@34232 git-svn-id: http://core.svn.wordpress.org/trunk@34196 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4c019c6aee
commit
19bcadf2a6
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34231';
|
||||
$wp_version = '4.4-alpha-34232';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
@ -653,14 +653,16 @@ case 'rp' :
|
||||
<input type="hidden" id="user_login" value="<?php echo esc_attr( $rp_login ); ?>" autocomplete="off" />
|
||||
|
||||
<p class="user-pass1-wrap">
|
||||
<label for="pass1"><?php _e('New password') ?></label><br />
|
||||
<label for="pass1"><?php _e( 'New password' ) ?></label>
|
||||
</p>
|
||||
|
||||
<div class="wp-pwd">
|
||||
<span class="password-input-wrapper">
|
||||
<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" />
|
||||
</span>
|
||||
<div id="pass-strength-result" class="hide-if-no-js" aria-live="polite"><?php _e( 'Strength indicator' ); ?></div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
<p class="user-pass2-wrap">
|
||||
<label for="pass2"><?php _e( 'Confirm new password' ) ?></label><br />
|
||||
<input type="password" name="pass2" id="pass2" class="input" size="20" value="" autocomplete="off" />
|
||||
|
Loading…
Reference in New Issue
Block a user