diff --git src/js/_enqueues/admin/user-profile.js src/js/_enqueues/admin/user-profile.js
index 386f8ae593..bad0d8ec0c 100644
|
|
|
43 | 43 | |
44 | 44 | // Once zxcvbn loads, passwords strength is known. |
45 | 45 | $( '#pw-weak-text-label' ).html( userProfileL10n.warnWeak ); |
| 46 | |
| 47 | // Focus the password field. |
| 48 | $($pass1Text).focus(); |
| 49 | |
46 | 50 | } |
47 | 51 | |
48 | 52 | function bindPass1() { |
diff --git src/wp-login.php src/wp-login.php
index 6c98ef3a77..de21d278f7 100644
|
|
switch ( $action ) { |
785 | 785 | </p> |
786 | 786 | |
787 | 787 | <?php |
788 | | login_footer( 'user_pass' ); |
| 788 | login_footer( 'pass1-text' ); |
789 | 789 | |
790 | 790 | break; |
791 | 791 | |