No require password if register via social auth

This commit is contained in:
cuom1999 2024-01-30 19:47:06 -06:00
parent 9fd93a3b53
commit 2ff1ed0f54
8 changed files with 410 additions and 353 deletions

View file

@ -417,6 +417,11 @@ function onWindowReady() {
$(this).hide().css({ width: 0});
});
});
$('.errorlist').each(function() {
var errorList = $(this);
errorList.nextAll('input, select, textarea').first().after(errorList);
});
}
$(function() {

View file

@ -611,6 +611,7 @@ ul.errorlist {
list-style: none;
padding: 0px;
color: red;
margin-bottom: 3px;
}
.registration-form {