Add enhanced schedule management for background tasks (#267)
This commit is contained in:
@@ -268,7 +268,7 @@
|
||||
if (newPassword.length > 0) {
|
||||
if (newPassword == conPassword) {
|
||||
// check if password meets requirements
|
||||
if (newPassword.length > 10) {
|
||||
if (newPassword.length >= 10) {
|
||||
errorLabel.innerHTML = "";
|
||||
submitButton.removeAttribute('disabled');
|
||||
return true;
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
if (userNameVal.includes("@")) {
|
||||
if (newPassword == conPassword) {
|
||||
// check if password meets requirements
|
||||
if (newPassword.length > 10) {
|
||||
if (newPassword.length >= 10) {
|
||||
errorLabel.innerHTML = "";
|
||||
submitButton.removeAttribute('disabled');
|
||||
} else {
|
||||
|
||||
@@ -285,7 +285,7 @@
|
||||
} else {
|
||||
if (newPassword == conPassword) {
|
||||
// check if password meets requirements
|
||||
if (newPassword.length > 10) {
|
||||
if (newPassword.length >= 10) {
|
||||
errorLabel.innerHTML = "";
|
||||
submitButton.removeAttribute('disabled');
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user