Whenever I need to modify an existing user (e.g. changing the access level), the password must be re-entered every time. Normally, you should not have to enter it again, as it is unchanged.
Therefore, I'm kind of forced to manage the passwords and logins in a separate list (Excel).
Is there any way to change this behavior? (IIRC re-entering the password was not necessary in nuBuilderPro )
By the way, there is no check to verify that the two entered passwords match.
nuBuilderPro did this check:
Code: Select all
function nuOnSave() {
//checkPasswords
if(document.getElementById('nuretyped').value != document.getElementById('nupassword').value) {
alert("'New Password' and 'Retype New Password' do not match..");
return false;
} else if(document.getElementById('sus_login_password').value == '' && document.getElementById('nuretyped').value == '') {
alert("'New Password' and 'Retype New Password' do not match..");
return false;
}
return true;
}