mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-22 17:31:39 +00:00

* fix: password complexity policy * feat: check password policy * feat: check password policy * fix: password policy on password change * fix: remove double policy check * feat: check pw policy on register * feat: check pw policy on init * fix: hover on secondary buttons * fix: use data set instead of hidden inputs * fix: disabled button * fix: en login * fix: read policy * feat: check if org exists * multiple checks * feat: validate all forms * fix: check all forms * fix: remove unused err Co-authored-by: Livio Amstutz <livio.a@gmail.com>
29 lines
852 B
JavaScript
29 lines
852 B
JavaScript
function disableSubmit(checks, button) {
|
|
console.log("GUGUS");
|
|
let form = document.getElementsByTagName('form')[0];
|
|
let inputs = form.getElementsByTagName('input');
|
|
for (i = 0; i < inputs.length; i++) {
|
|
inputs[i].addEventListener('input', function () {
|
|
if (checks != undefined) {
|
|
if (checks() === false) {
|
|
button.disabled = true;
|
|
return
|
|
}
|
|
}
|
|
if (checkRequired(form, inputs) === false) {
|
|
button.disabled = true;
|
|
return
|
|
}
|
|
button.disabled = false;
|
|
});
|
|
}
|
|
}
|
|
|
|
function checkRequired(form, inputs) {
|
|
for (i = 0; i < inputs.length; i++) {
|
|
if (inputs[i].required && inputs[i].value == '') {
|
|
return false
|
|
}
|
|
}
|
|
return true;
|
|
} |