Login: Password reset - add hide icon & confirm weak password checkbox.

Extends the password features added in 4.3 to the password reset flow.

Props johnbillion, manolis09, umesh.nevase, Nikschavan.



git-svn-id: https://develop.svn.wordpress.org/trunk@41556 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Adam Silverstein
2017-09-21 21:28:07 +00:00
parent 9b7c97af26
commit 52bdeee37d
3 changed files with 33 additions and 5 deletions

View File

@@ -73,6 +73,25 @@ p {
padding: 0;
}
.login .password-input-wrapper {
display: table;
}
.login .input.password-input {
display: table-cell;
margin: 0;
}
.login .pw-weak {
margin-bottom: 15px;
}
.login .button.button-secondary {
display: table-cell;
border-radius: 0;
vertical-align: middle;
}
.login form {
margin-top: 20px;
margin-left: 0;

View File

@@ -161,7 +161,7 @@
// hide this
$('.user-pass2-wrap').hide();
$submitButton = $( '#submit' ).on( 'click', function () {
$submitButton = $( '#submit, #wp-submit' ).on( 'click', function () {
updateLock = false;
});
@@ -314,7 +314,7 @@
if ( passStrength.className ) {
$pass1.add( $pass1Text ).addClass( passStrength.className );
if ( 'short' === passStrength.className || 'bad' === passStrength.className ) {
if ( $( passStrength ).is( '.short, .bad' ) ) {
if ( ! $weakCheckbox.prop( 'checked' ) ) {
$submitButtons.prop( 'disabled', true );
}