mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
New password change/set UI.
* Generate the password for the user * More tightly integrate password strength meter * Warn on weak passwords see #32589 props MikeHansenMe, adamsilverstein, binarykitten Built from https://develop.svn.wordpress.org/trunk@33023 git-svn-id: http://core.svn.wordpress.org/trunk@32994 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b1bd2e699d
commit
423a1a7ca4
@ -401,6 +401,11 @@ input[type="number"].small-text {
|
|||||||
color: #777;
|
color: #777;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.wp-hide-pw > .dashicons {
|
||||||
|
position: relative;
|
||||||
|
top: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
label,
|
label,
|
||||||
#your-profile label + a {
|
#your-profile label + a {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
@ -434,34 +439,58 @@ fieldset label,
|
|||||||
#pass-strength-result {
|
#pass-strength-result {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
float: right;
|
margin: -2px 1px 5px 5px;
|
||||||
margin: 13px 1px 5px 5px;
|
|
||||||
padding: 3px 5px;
|
padding: 3px 5px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 200px;
|
width: 25em;
|
||||||
display: none;
|
box-sizing: border-box;
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pass-strength-result.short {
|
#pass-strength-result.short {
|
||||||
|
opacity: 1;
|
||||||
background-color: #ffa0a0;
|
background-color: #ffa0a0;
|
||||||
border-color: #f04040;
|
border-color: #f04040;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pass-strength-result.bad {
|
#pass-strength-result.bad {
|
||||||
|
opacity: 1;
|
||||||
background-color: #ffb78c;
|
background-color: #ffb78c;
|
||||||
border-color: #ff853c;
|
border-color: #ff853c;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pass-strength-result.good {
|
#pass-strength-result.good {
|
||||||
|
opacity: 1;
|
||||||
background-color: #ffec8b;
|
background-color: #ffec8b;
|
||||||
border-color: #fc0;
|
border-color: #fc0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pass-strength-result.strong {
|
#pass-strength-result.strong {
|
||||||
|
opacity: 1;
|
||||||
background-color: #c3ff88;
|
background-color: #c3ff88;
|
||||||
border-color: #8dff1c;
|
border-color: #8dff1c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#pass1.short {
|
||||||
|
border-color: #f04040;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pass1.bad {
|
||||||
|
border-color: #ff853c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pass1.good {
|
||||||
|
border-color: #fc0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pass1.strong {
|
||||||
|
border-color: #8dff1c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pw-weak{
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
.indicator-hint {
|
.indicator-hint {
|
||||||
padding-top: 8px;
|
padding-top: 8px;
|
||||||
}
|
}
|
||||||
|
@ -401,6 +401,11 @@ input[type="number"].small-text {
|
|||||||
color: #777;
|
color: #777;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.wp-hide-pw > .dashicons {
|
||||||
|
position: relative;
|
||||||
|
top: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
label,
|
label,
|
||||||
#your-profile label + a {
|
#your-profile label + a {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
@ -434,34 +439,58 @@ fieldset label,
|
|||||||
#pass-strength-result {
|
#pass-strength-result {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
float: left;
|
margin: -2px 5px 5px 1px;
|
||||||
margin: 13px 5px 5px 1px;
|
|
||||||
padding: 3px 5px;
|
padding: 3px 5px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 200px;
|
width: 25em;
|
||||||
display: none;
|
box-sizing: border-box;
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pass-strength-result.short {
|
#pass-strength-result.short {
|
||||||
|
opacity: 1;
|
||||||
background-color: #ffa0a0;
|
background-color: #ffa0a0;
|
||||||
border-color: #f04040;
|
border-color: #f04040;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pass-strength-result.bad {
|
#pass-strength-result.bad {
|
||||||
|
opacity: 1;
|
||||||
background-color: #ffb78c;
|
background-color: #ffb78c;
|
||||||
border-color: #ff853c;
|
border-color: #ff853c;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pass-strength-result.good {
|
#pass-strength-result.good {
|
||||||
|
opacity: 1;
|
||||||
background-color: #ffec8b;
|
background-color: #ffec8b;
|
||||||
border-color: #fc0;
|
border-color: #fc0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pass-strength-result.strong {
|
#pass-strength-result.strong {
|
||||||
|
opacity: 1;
|
||||||
background-color: #c3ff88;
|
background-color: #c3ff88;
|
||||||
border-color: #8dff1c;
|
border-color: #8dff1c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#pass1.short {
|
||||||
|
border-color: #f04040;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pass1.bad {
|
||||||
|
border-color: #ff853c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pass1.good {
|
||||||
|
border-color: #fc0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pass1.strong {
|
||||||
|
border-color: #8dff1c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pw-weak{
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
.indicator-hint {
|
.indicator-hint {
|
||||||
padding-top: 8px;
|
padding-top: 8px;
|
||||||
}
|
}
|
||||||
|
2
wp-admin/css/login-rtl.min.css
vendored
2
wp-admin/css/login-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
2
wp-admin/css/login.min.css
vendored
2
wp-admin/css/login.min.css
vendored
File diff suppressed because one or more lines are too long
4
wp-admin/css/wp-admin-rtl.min.css
vendored
4
wp-admin/css/wp-admin-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
4
wp-admin/css/wp-admin.min.css
vendored
4
wp-admin/css/wp-admin.min.css
vendored
File diff suppressed because one or more lines are too long
@ -176,7 +176,7 @@ function edit_user( $user_id = 0 ) {
|
|||||||
$user_id = wp_update_user( $user );
|
$user_id = wp_update_user( $user );
|
||||||
} else {
|
} else {
|
||||||
$user_id = wp_insert_user( $user );
|
$user_id = wp_insert_user( $user );
|
||||||
wp_new_user_notification( $user_id, isset( $_POST['send_password'] ) ? wp_unslash( $pass1 ) : '' );
|
wp_new_user_notification( $user_id );
|
||||||
}
|
}
|
||||||
return $user_id;
|
return $user_id;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,110 @@
|
|||||||
/* global ajaxurl, pwsL10n */
|
/* global ajaxurl, pwsL10n */
|
||||||
(function($){
|
(function($){
|
||||||
|
$(function(){
|
||||||
|
var pw_new = $('.user-pass1-wrap'),
|
||||||
|
pw_line = pw_new.find('.wp-pwd'),
|
||||||
|
pw_field = $('#pass1'),
|
||||||
|
pw_field2 = $('#pass2'),
|
||||||
|
pw_togglebtn = pw_new.find('.wp-hide-pw'),
|
||||||
|
pw_generatebtn = pw_new.find('button.wp-generate-pw'),
|
||||||
|
pw_2 = $('.user-pass2-wrap'),
|
||||||
|
parentform = pw_new.closest('form'),
|
||||||
|
pw_strength = $('#pass-strength-result'),
|
||||||
|
pw_submitbtn_edit = $('#submit'),
|
||||||
|
pw_submitbtn_new = $( '#createusersub' ),
|
||||||
|
pw_checkbox = $('.pw-checkbox'),
|
||||||
|
pw_weak = $('.pw-weak')
|
||||||
|
;
|
||||||
|
|
||||||
|
generatePassword = function() {
|
||||||
|
pw_field.val( pw_field.data( 'pw' ) );
|
||||||
|
pw_field.trigger( 'propertychange' );
|
||||||
|
pw_field.attr( 'type', 'text' ).focus();
|
||||||
|
pw_field[0].setSelectionRange(100, 100);
|
||||||
|
};
|
||||||
|
|
||||||
|
pw_2.hide();
|
||||||
|
pw_line.hide();
|
||||||
|
pw_togglebtn.show();
|
||||||
|
pw_generatebtn.show();
|
||||||
|
|
||||||
|
if ( pw_field.data( 'reveal' ) == 1 ) {
|
||||||
|
generatePassword();
|
||||||
|
}
|
||||||
|
|
||||||
|
parentform.on('submit', function(){
|
||||||
|
pw_field2.val( pw_field.val() );
|
||||||
|
pw_field.attr('type', 'password');
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
pw_field.on('input propertychange', function(){
|
||||||
|
setTimeout( function(){
|
||||||
|
var cssClass = pw_strength.attr('class');
|
||||||
|
pw_field.removeClass( 'short bad good strong' );
|
||||||
|
if ( 'undefined' !== typeof cssClass ) {
|
||||||
|
pw_field.addClass( cssClass );
|
||||||
|
if ( cssClass == 'short' || cssClass == 'bad' ) {
|
||||||
|
if ( ! pw_checkbox.attr( 'checked' ) ) {
|
||||||
|
pw_submitbtn_new.attr( 'disabled','disabled' );
|
||||||
|
pw_submitbtn_edit.attr( 'disabled','disabled' );
|
||||||
|
}
|
||||||
|
pw_weak.show();
|
||||||
|
} else {
|
||||||
|
pw_submitbtn_new.removeAttr( 'disabled' );
|
||||||
|
pw_submitbtn_edit.removeAttr( 'disabled' );
|
||||||
|
pw_weak.hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 1 );
|
||||||
|
} );
|
||||||
|
|
||||||
|
pw_checkbox.change( function() {
|
||||||
|
if ( pw_checkbox.attr( 'checked' ) ) {
|
||||||
|
pw_submitbtn_new.removeAttr( 'disabled' );
|
||||||
|
pw_submitbtn_edit.removeAttr( 'disabled' );
|
||||||
|
} else {
|
||||||
|
pw_submitbtn_new.attr( 'disabled','disabled' );
|
||||||
|
pw_submitbtn_edit.attr( 'disabled','disabled' );
|
||||||
|
}
|
||||||
|
} );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fix a LastPass mismatch issue, LastPass only changes pass2.
|
||||||
|
*
|
||||||
|
* This fixes the issue by copying any changes from the hidden
|
||||||
|
* pass2 field to the pass1 field.
|
||||||
|
*/
|
||||||
|
pw_field2.on( 'input propertychange', function() {
|
||||||
|
pw_field.val( pw_field2.val() );
|
||||||
|
pw_field.trigger( 'propertychange' );
|
||||||
|
} );
|
||||||
|
|
||||||
|
pw_new.on( 'click', 'button.wp-generate-pw', function(){
|
||||||
|
pw_generatebtn.hide();
|
||||||
|
pw_line.show();
|
||||||
|
generatePassword();
|
||||||
|
});
|
||||||
|
|
||||||
|
pw_togglebtn.on( 'click', function() {
|
||||||
|
var show = pw_togglebtn.attr( 'data-toggle' );
|
||||||
|
if ( show == 1 ) {
|
||||||
|
pw_field.attr( 'type', 'text' );
|
||||||
|
pw_togglebtn.attr( 'data-toggle', 0 )
|
||||||
|
.find( '.text' )
|
||||||
|
.text( 'hide' )
|
||||||
|
;
|
||||||
|
} else {
|
||||||
|
pw_field.attr( 'type', 'password' );
|
||||||
|
pw_togglebtn.attr( 'data-toggle', 1 )
|
||||||
|
.find( '.text' )
|
||||||
|
.text( 'show' )
|
||||||
|
;
|
||||||
|
}
|
||||||
|
pw_field.focus();
|
||||||
|
pw_field[0].setSelectionRange(100, 100);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
function check_pass_strength() {
|
function check_pass_strength() {
|
||||||
var pass1 = $('#pass1').val(), pass2 = $('#pass2').val(), strength;
|
var pass1 = $('#pass1').val(), pass2 = $('#pass2').val(), strength;
|
||||||
|
2
wp-admin/js/user-profile.min.js
vendored
2
wp-admin/js/user-profile.min.js
vendored
@ -1 +1 @@
|
|||||||
!function(a){function b(){var b,c=a("#pass1").val(),d=a("#pass2").val();if(a("#pass-strength-result").removeClass("short bad good strong"),!c)return void a("#pass-strength-result").html(pwsL10n.empty);switch(b=wp.passwordStrength.meter(c,wp.passwordStrength.userInputBlacklist(),d)){case 2:a("#pass-strength-result").addClass("bad").html(pwsL10n.bad);break;case 3:a("#pass-strength-result").addClass("good").html(pwsL10n.good);break;case 4:a("#pass-strength-result").addClass("strong").html(pwsL10n.strong);break;case 5:a("#pass-strength-result").addClass("short").html(pwsL10n.mismatch);break;default:a("#pass-strength-result").addClass("short").html(pwsL10n["short"])}}a(document).ready(function(){var c,d,e,f,g=a("#display_name");a("#pass1").val("").on("input propertychange",b),a("#pass2").val("").on("input propertychange",b),a("#pass-strength-result").show(),a(".color-palette").click(function(){a(this).siblings('input[name="admin_color"]').prop("checked",!0)}),g.length&&a("#first_name, #last_name, #nickname").bind("blur.user_profile",function(){var b=[],c={display_nickname:a("#nickname").val()||"",display_username:a("#user_login").val()||"",display_firstname:a("#first_name").val()||"",display_lastname:a("#last_name").val()||""};c.display_firstname&&c.display_lastname&&(c.display_firstlast=c.display_firstname+" "+c.display_lastname,c.display_lastfirst=c.display_lastname+" "+c.display_firstname),a.each(a("option",g),function(a,c){b.push(c.value)}),a.each(c,function(d,e){if(e){var f=e.replace(/<\/?[a-z][^>]*>/gi,"");c[d].length&&-1===a.inArray(f,b)&&(b.push(f),a("<option />",{text:f}).appendTo(g))}})}),c=a("#color-picker"),d=a("#colors-css"),e=a("input#user_id").val(),f=a('input[name="checkuser_id"]').val(),c.on("click.colorpicker",".color-option",function(){var b,c=a(this);if(!c.hasClass("selected")&&(c.siblings(".selected").removeClass("selected"),c.addClass("selected").find('input[type="radio"]').prop("checked",!0),e===f)){if(0===d.length&&(d=a('<link rel="stylesheet" />').appendTo("head")),d.attr("href",c.children(".css_url").val()),"undefined"!=typeof wp&&wp.svgPainter){try{b=a.parseJSON(c.children(".icon_colors").val())}catch(g){}b&&(wp.svgPainter.setColors(b),wp.svgPainter.paint())}a.post(ajaxurl,{action:"save-user-color-scheme",color_scheme:c.children('input[name="admin_color"]').val(),nonce:a("#color-nonce").val()}).done(function(b){b.success&&a("body").removeClass(b.data.previousScheme).addClass(b.data.currentScheme)})}})}),a("#destroy-sessions").on("click",function(b){var c=a(this);wp.ajax.post("destroy-sessions",{nonce:a("#_wpnonce").val(),user_id:a("#user_id").val()}).done(function(a){c.prop("disabled",!0),c.siblings(".notice").remove(),c.before('<div class="notice notice-success inline"><p>'+a.message+"</p></div>")}).fail(function(a){c.siblings(".notice").remove(),c.before('<div class="notice notice-error inline"><p>'+a.message+"</p></div>")}),b.preventDefault()})}(jQuery);
|
!function(a){function b(){var b,c=a("#pass1").val(),d=a("#pass2").val();if(a("#pass-strength-result").removeClass("short bad good strong"),!c)return void a("#pass-strength-result").html(pwsL10n.empty);switch(b=wp.passwordStrength.meter(c,wp.passwordStrength.userInputBlacklist(),d)){case 2:a("#pass-strength-result").addClass("bad").html(pwsL10n.bad);break;case 3:a("#pass-strength-result").addClass("good").html(pwsL10n.good);break;case 4:a("#pass-strength-result").addClass("strong").html(pwsL10n.strong);break;case 5:a("#pass-strength-result").addClass("short").html(pwsL10n.mismatch);break;default:a("#pass-strength-result").addClass("short").html(pwsL10n["short"])}}a(function(){var b=a(".user-pass1-wrap"),c=b.find(".wp-pwd"),d=a("#pass1"),e=a("#pass2"),f=b.find(".wp-hide-pw"),g=b.find("button.wp-generate-pw"),h=a(".user-pass2-wrap"),i=b.closest("form"),j=a("#pass-strength-result"),k=a("#submit"),l=a("#createusersub"),m=a(".pw-checkbox"),n=a(".pw-weak");generatePassword=function(){d.val(d.data("pw")),d.trigger("propertychange"),d.attr("type","text").focus(),d[0].setSelectionRange(100,100)},h.hide(),c.hide(),f.show(),g.show(),1==d.data("reveal")&&generatePassword(),i.on("submit",function(){e.val(d.val()),d.attr("type","password")}),d.on("input propertychange",function(){setTimeout(function(){var a=j.attr("class");d.removeClass("short bad good strong"),"undefined"!=typeof a&&(d.addClass(a),"short"==a||"bad"==a?(m.attr("checked")||(l.attr("disabled","disabled"),k.attr("disabled","disabled")),n.show()):(l.removeAttr("disabled"),k.removeAttr("disabled"),n.hide()))},1)}),m.change(function(){m.attr("checked")?(l.removeAttr("disabled"),k.removeAttr("disabled")):(l.attr("disabled","disabled"),k.attr("disabled","disabled"))}),e.on("input propertychange",function(){d.val(e.val()),d.trigger("propertychange")}),b.on("click","button.wp-generate-pw",function(){g.hide(),c.show(),generatePassword()}),f.on("click",function(){var a=f.attr("data-toggle");1==a?(d.attr("type","text"),f.attr("data-toggle",0).find(".text").text("hide")):(d.attr("type","password"),f.attr("data-toggle",1).find(".text").text("show")),d.focus(),d[0].setSelectionRange(100,100)})}),a(document).ready(function(){var c,d,e,f,g=a("#display_name");a("#pass1").val("").on("input propertychange",b),a("#pass2").val("").on("input propertychange",b),a("#pass-strength-result").show(),a(".color-palette").click(function(){a(this).siblings('input[name="admin_color"]').prop("checked",!0)}),g.length&&a("#first_name, #last_name, #nickname").bind("blur.user_profile",function(){var b=[],c={display_nickname:a("#nickname").val()||"",display_username:a("#user_login").val()||"",display_firstname:a("#first_name").val()||"",display_lastname:a("#last_name").val()||""};c.display_firstname&&c.display_lastname&&(c.display_firstlast=c.display_firstname+" "+c.display_lastname,c.display_lastfirst=c.display_lastname+" "+c.display_firstname),a.each(a("option",g),function(a,c){b.push(c.value)}),a.each(c,function(d,e){if(e){var f=e.replace(/<\/?[a-z][^>]*>/gi,"");c[d].length&&-1===a.inArray(f,b)&&(b.push(f),a("<option />",{text:f}).appendTo(g))}})}),c=a("#color-picker"),d=a("#colors-css"),e=a("input#user_id").val(),f=a('input[name="checkuser_id"]').val(),c.on("click.colorpicker",".color-option",function(){var b,c=a(this);if(!c.hasClass("selected")&&(c.siblings(".selected").removeClass("selected"),c.addClass("selected").find('input[type="radio"]').prop("checked",!0),e===f)){if(0===d.length&&(d=a('<link rel="stylesheet" />').appendTo("head")),d.attr("href",c.children(".css_url").val()),"undefined"!=typeof wp&&wp.svgPainter){try{b=a.parseJSON(c.children(".icon_colors").val())}catch(g){}b&&(wp.svgPainter.setColors(b),wp.svgPainter.paint())}a.post(ajaxurl,{action:"save-user-color-scheme",color_scheme:c.children('input[name="admin_color"]').val(),nonce:a("#color-nonce").val()}).done(function(b){b.success&&a("body").removeClass(b.data.previousScheme).addClass(b.data.currentScheme)})}})}),a("#destroy-sessions").on("click",function(b){var c=a(this);wp.ajax.post("destroy-sessions",{nonce:a("#_wpnonce").val(),user_id:a("#user_id").val()}).done(function(a){c.prop("disabled",!0),c.siblings(".notice").remove(),c.before('<div class="notice notice-success inline"><p>'+a.message+"</p></div>")}).fail(function(a){c.siblings(".notice").remove(),c.before('<div class="notice notice-error inline"><p>'+a.message+"</p></div>")}),b.preventDefault()})}(jQuery);
|
@ -462,27 +462,33 @@ if ( $show_password_fields ) :
|
|||||||
<th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
|
<th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
|
||||||
<td>
|
<td>
|
||||||
<input class="hidden" value=" " /><!-- #24364 workaround -->
|
<input class="hidden" value=" " /><!-- #24364 workaround -->
|
||||||
<input type="password" name="pass1" id="pass1" class="regular-text" size="16" value="" autocomplete="off" />
|
<button type="button" class="button button-secondary wp-generate-pw hide-if-no-js"><?php _e( 'Generate new password' ); ?></button>
|
||||||
<p class="description"><?php _e( 'If you would like to change the password type a new one. Otherwise leave this blank.' ); ?></p>
|
<div class="wp-pwd hide-if-js">
|
||||||
|
<input type="password" name="pass1" id="pass1" class="regular-text" value="" autocomplete="off" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" />
|
||||||
|
<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0">
|
||||||
|
<span class="dashicons dashicons-visibility"></span>
|
||||||
|
<span class="text">hide</span>
|
||||||
|
</button>
|
||||||
|
<div style="display:none" id="pass-strength-result"></div>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="user-pass2-wrap">
|
<tr class="user-pass2-wrap hide-if-js">
|
||||||
<th scope="row"><label for="pass2"><?php _e( 'Repeat New Password' ); ?></label></th>
|
<th scope="row"><label for="pass2"><?php _e( 'Repeat New Password' ); ?></label></th>
|
||||||
<td>
|
<td>
|
||||||
<input name="pass2" type="password" id="pass2" class="regular-text" size="16" value="" autocomplete="off" />
|
<input name="pass2" type="password" id="pass2" class="regular-text" value="" autocomplete="off" />
|
||||||
<p class="description"><?php _e( 'Type your new password again.' ); ?></p>
|
<p class="description"><?php _e( 'Type your new password again.' ); ?></p>
|
||||||
<br />
|
</td>
|
||||||
<div id="pass-strength-result"><?php _e( 'Strength indicator' ); ?></div>
|
</tr>
|
||||||
<p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p>
|
<tr class="pw-weak">
|
||||||
|
<th><label for="pw-weak"><?php _e( 'Confirm Password' ); ?></label></th>
|
||||||
|
<td>
|
||||||
|
<input type="checkbox" name="pw-weak" class="pw-checkbox" />
|
||||||
|
<?php _e( 'Confirm use of weak password' ); ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?php
|
|
||||||
// This is a temporary hook for WordPress 4.3 development. Do not use it or document it.
|
|
||||||
do_action( '__temp_password_field', $profileuser );
|
|
||||||
?>
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
|
if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
|
||||||
<tr class="user-sessions-wrap hide-if-no-js">
|
<tr class="user-sessions-wrap hide-if-no-js">
|
||||||
|
@ -190,7 +190,7 @@ get_current_screen()->set_help_sidebar(
|
|||||||
);
|
);
|
||||||
|
|
||||||
wp_enqueue_script('wp-ajax-response');
|
wp_enqueue_script('wp-ajax-response');
|
||||||
wp_enqueue_script('user-profile');
|
wp_enqueue_script( 'user-profile' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter whether to enable user auto-complete for non-super admins in Multisite.
|
* Filter whether to enable user auto-complete for non-super admins in Multisite.
|
||||||
@ -355,7 +355,7 @@ $new_user_lastname = $creating && isset( $_POST['last_name'] ) ? wp_unslash( $_P
|
|||||||
$new_user_email = $creating && isset( $_POST['email'] ) ? wp_unslash( $_POST['email'] ) : '';
|
$new_user_email = $creating && isset( $_POST['email'] ) ? wp_unslash( $_POST['email'] ) : '';
|
||||||
$new_user_uri = $creating && isset( $_POST['url'] ) ? wp_unslash( $_POST['url'] ) : '';
|
$new_user_uri = $creating && isset( $_POST['url'] ) ? wp_unslash( $_POST['url'] ) : '';
|
||||||
$new_user_role = $creating && isset( $_POST['role'] ) ? wp_unslash( $_POST['role'] ) : '';
|
$new_user_role = $creating && isset( $_POST['role'] ) ? wp_unslash( $_POST['role'] ) : '';
|
||||||
$new_user_send_password = $creating && isset( $_POST['send_password'] ) ? wp_unslash( $_POST['send_password'] ) : '';
|
$new_user_send_password = $creating && isset( $_POST['send_password'] ) ? wp_unslash( $_POST['send_password'] ) : true;
|
||||||
$new_user_ignore_pass = $creating && isset( $_POST['noconfirmation'] ) ? wp_unslash( $_POST['noconfirmation'] ) : '';
|
$new_user_ignore_pass = $creating && isset( $_POST['noconfirmation'] ) ? wp_unslash( $_POST['noconfirmation'] ) : '';
|
||||||
|
|
||||||
?>
|
?>
|
||||||
@ -390,25 +390,40 @@ $new_user_ignore_pass = $creating && isset( $_POST['noconfirmation'] ) ? wp_unsl
|
|||||||
* @param bool $show Whether to show the password fields. Default true.
|
* @param bool $show Whether to show the password fields. Default true.
|
||||||
*/
|
*/
|
||||||
if ( apply_filters( 'show_password_fields', true ) ) : ?>
|
if ( apply_filters( 'show_password_fields', true ) ) : ?>
|
||||||
<tr class="form-field form-required">
|
<tr class="form-field form-required user-pass1-wrap">
|
||||||
<th scope="row"><label for="pass1"><?php _e('Password'); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th>
|
<th scope="row">
|
||||||
|
<label for="pass1">
|
||||||
|
<?php _e( 'Password' ); ?>
|
||||||
|
<span class="description hide-if-js"><?php /* translators: password input field */_e( '(required)' ); ?></span>
|
||||||
|
</label>
|
||||||
|
</th>
|
||||||
<td>
|
<td>
|
||||||
<input class="hidden" value=" " /><!-- #24364 workaround -->
|
<input class="hidden" value=" " /><!-- #24364 workaround -->
|
||||||
<input name="pass1" type="password" id="pass1" autocomplete="off" />
|
<button type="button" class="button button-secondary wp-generate-pw hide-if-no-js"><?php _e( 'Show password' ); ?></button>
|
||||||
|
<div class="wp-pwd hide-if-js">
|
||||||
|
<?php $initial_password = wp_generate_password( 24 ); ?>
|
||||||
|
<input type="password" name="pass1" id="pass1" class="regular-text" value="<?php echo esc_attr( $initial_password ); ?>" autocomplete="off" data-reveal="1" data-pw="<?php echo esc_attr( $initial_password ); ?>" />
|
||||||
|
<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0">
|
||||||
|
<span class="dashicons dashicons-visibility"></span>
|
||||||
|
<span class="text">hide</span>
|
||||||
|
</button>
|
||||||
|
<div style="display:none" id="pass-strength-result"></div>
|
||||||
|
</div>
|
||||||
|
<p><span class="description"><?php _e( 'A password reset link will be sent to the user via email' ); ?></span></p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="form-field form-required">
|
<tr class="form-field form-required user-pass2-wrap hide-if-js">
|
||||||
<th scope="row"><label for="pass2"><?php _e('Repeat Password'); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th>
|
<th scope="row"><label for="pass2"><?php _e( 'Repeat Password' ); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th>
|
||||||
<td>
|
<td>
|
||||||
<input name="pass2" type="password" id="pass2" autocomplete="off" />
|
<input name="pass2" type="password" id="pass2" autocomplete="off" />
|
||||||
<br />
|
|
||||||
<div id="pass-strength-result"><?php _e('Strength indicator'); ?></div>
|
|
||||||
<p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr class="pw-weak">
|
||||||
<th scope="row"><?php _e('Send Password?') ?></th>
|
<th><label for="pw-weak"><?php _e( 'Confirm Password' ); ?></label></th>
|
||||||
<td><label for="send_password"><input type="checkbox" name="send_password" id="send_password" value="1" <?php checked( $new_user_send_password ); ?> /> <?php _e('Send this password to the new user by email.'); ?></label></td>
|
<td>
|
||||||
|
<input type="checkbox" name="pw-weak" class="pw-checkbox" />
|
||||||
|
<?php _e( 'Confirm use of weak password' ); ?>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php } // !is_multisite ?>
|
<?php } // !is_multisite ?>
|
||||||
|
@ -92,6 +92,9 @@ function wp_initial_constants() {
|
|||||||
if ( !defined('SHORTINIT') )
|
if ( !defined('SHORTINIT') )
|
||||||
define('SHORTINIT', false);
|
define('SHORTINIT', false);
|
||||||
|
|
||||||
|
// Constants for features added to WP that should short-circuit their plugin implementations
|
||||||
|
define( 'WP_FEATURE_BETTER_PASSWORDS', true );
|
||||||
|
|
||||||
// Constants for expressing human-readable intervals
|
// Constants for expressing human-readable intervals
|
||||||
// in their respective number of seconds.
|
// in their respective number of seconds.
|
||||||
define( 'MINUTE_IN_SECONDS', 60 );
|
define( 'MINUTE_IN_SECONDS', 60 );
|
||||||
|
@ -1690,9 +1690,9 @@ if ( !function_exists('wp_new_user_notification') ) :
|
|||||||
* @since 2.0.0
|
* @since 2.0.0
|
||||||
*
|
*
|
||||||
* @param int $user_id User ID.
|
* @param int $user_id User ID.
|
||||||
* @param string $plaintext_pass Optional. The user's plaintext password. Default empty.
|
|
||||||
*/
|
*/
|
||||||
function wp_new_user_notification($user_id, $plaintext_pass = '') {
|
function wp_new_user_notification($user_id) {
|
||||||
|
global $wpdb;
|
||||||
$user = get_userdata( $user_id );
|
$user = get_userdata( $user_id );
|
||||||
|
|
||||||
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
|
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
|
||||||
@ -1705,14 +1705,26 @@ function wp_new_user_notification($user_id, $plaintext_pass = '') {
|
|||||||
|
|
||||||
@wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message);
|
@wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message);
|
||||||
|
|
||||||
if ( empty($plaintext_pass) )
|
// Generate something random for a password reset key.
|
||||||
return;
|
$key = wp_generate_password( 20, false );
|
||||||
|
|
||||||
|
do_action( 'retrieve_password_key', $user->user_login, $key );
|
||||||
|
|
||||||
|
// Now insert the key, hashed, into the DB.
|
||||||
|
if ( empty( $wp_hasher ) ) {
|
||||||
|
require_once ABSPATH . WPINC . '/class-phpass.php';
|
||||||
|
$wp_hasher = new PasswordHash( 8, true );
|
||||||
|
}
|
||||||
|
$hashed = time() . ':' . $wp_hasher->HashPassword( $key );
|
||||||
|
$wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user->user_login ) );
|
||||||
|
|
||||||
|
$message = sprintf(__('Username: %s'), $user->user_login) . "\r\n\r\n";
|
||||||
|
$message .= __('To set your password, visit the following address:') . "\r\n\r\n";
|
||||||
|
$message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user->user_login), 'login') . ">\r\n\r\n";
|
||||||
|
|
||||||
$message = sprintf(__('Username: %s'), $user->user_login) . "\r\n";
|
|
||||||
$message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n";
|
|
||||||
$message .= wp_login_url() . "\r\n";
|
$message .= wp_login_url() . "\r\n";
|
||||||
|
|
||||||
wp_mail($user->user_email, sprintf(__('[%s] Your username and password'), $blogname), $message);
|
wp_mail($user->user_email, sprintf(__('[%s] Your username and password info'), $blogname), $message);
|
||||||
|
|
||||||
}
|
}
|
||||||
endif;
|
endif;
|
||||||
|
@ -365,7 +365,7 @@ function wp_default_scripts( &$scripts ) {
|
|||||||
|
|
||||||
$scripts->add( 'password-strength-meter', "/wp-admin/js/password-strength-meter$suffix.js", array( 'jquery', 'zxcvbn-async' ), false, 1 );
|
$scripts->add( 'password-strength-meter', "/wp-admin/js/password-strength-meter$suffix.js", array( 'jquery', 'zxcvbn-async' ), false, 1 );
|
||||||
did_action( 'init' ) && $scripts->localize( 'password-strength-meter', 'pwsL10n', array(
|
did_action( 'init' ) && $scripts->localize( 'password-strength-meter', 'pwsL10n', array(
|
||||||
'empty' => __('Strength indicator'),
|
'empty' => __(' '),
|
||||||
'short' => __('Very weak'),
|
'short' => __('Very weak'),
|
||||||
'bad' => __('Weak'),
|
'bad' => __('Weak'),
|
||||||
/* translators: password strength */
|
/* translators: password strength */
|
||||||
|
@ -2409,7 +2409,7 @@ function _wp_get_user_contactmethods( $user = null ) {
|
|||||||
* @return string The password hint text.
|
* @return string The password hint text.
|
||||||
*/
|
*/
|
||||||
function wp_get_password_hint() {
|
function wp_get_password_hint() {
|
||||||
$hint = __( 'Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! " ? $ % ^ & ).' );
|
$hint = __( 'Hint: The password should be at least twelve characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! " ? $ % ^ & ).' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter the text describing the site's password complexity policy.
|
* Filter the text describing the site's password complexity policy.
|
||||||
@ -2615,7 +2615,7 @@ function register_new_user( $user_login, $user_email ) {
|
|||||||
|
|
||||||
update_user_option( $user_id, 'default_password_nag', true, true ); //Set up the Password change nag.
|
update_user_option( $user_id, 'default_password_nag', true, true ); //Set up the Password change nag.
|
||||||
|
|
||||||
wp_new_user_notification( $user_id, $user_pass );
|
wp_new_user_notification( $user_id );
|
||||||
|
|
||||||
return $user_id;
|
return $user_id;
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.3-alpha-33022';
|
$wp_version = '4.3-alpha-33023';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
14
wp-login.php
14
wp-login.php
@ -652,13 +652,15 @@ case 'rp' :
|
|||||||
<form name="resetpassform" id="resetpassform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=resetpass', 'login_post' ) ); ?>" method="post" autocomplete="off">
|
<form name="resetpassform" id="resetpassform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=resetpass', 'login_post' ) ); ?>" method="post" autocomplete="off">
|
||||||
<input type="hidden" id="user_login" value="<?php echo esc_attr( $rp_login ); ?>" autocomplete="off" />
|
<input type="hidden" id="user_login" value="<?php echo esc_attr( $rp_login ); ?>" autocomplete="off" />
|
||||||
|
|
||||||
<p>
|
<p class="user-pass1-wrap">
|
||||||
<label for="pass1"><?php _e('New password') ?><br />
|
<label for="pass1"><?php _e('New password') ?></label><br />
|
||||||
<input type="password" name="pass1" id="pass1" class="input" size="20" value="" autocomplete="off" /></label>
|
<div class="wp-pwd">
|
||||||
|
<input type="password" data-reveal="1" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" name="pass1" id="pass1" class="input" size="20" value="" autocomplete="off" />
|
||||||
|
</div>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p class="user-pass2-wrap">
|
||||||
<label for="pass2"><?php _e('Confirm new password') ?><br />
|
<label for="pass2"><?php _e('Confirm new password') ?></label><br />
|
||||||
<input type="password" name="pass2" id="pass2" class="input" size="20" value="" autocomplete="off" /></label>
|
<input type="password" name="pass2" id="pass2" class="input" size="20" value="" autocomplete="off" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div id="pass-strength-result" class="hide-if-no-js"><?php _e('Strength indicator'); ?></div>
|
<div id="pass-strength-result" class="hide-if-no-js"><?php _e('Strength indicator'); ?></div>
|
||||||
|
Loading…
Reference in New Issue
Block a user