messages not working properly
Quote from: VignacSecond
Nice, You do a great job, thanks for your time.
Also, "Passwords must be at least 8 characters and no more than 72 characters long. Only letters, numbers, and most common ASCII special characters are allowed. Your password cannot begin or end with spaces." This rule is not respected when we want to change the password on our profile :/
Basically it's not good for the database if you can put a huge password.
You need to put this rule
Code
"<input type = "password" class = "registerPassword" minLength = "<? Php print ($ min_password_length);?>" MaxLength = "72" name = "password" tabIndex = "2 "autocomplete =" new-password "required pattern =" (^ [A-Za-z0-9! @ # $% ^ & * () \ -_ = + \ [\] {} | \\;: \ x27 \ x22,. / <>? ~] [A-Za-z0-9! @ # $% ^ & * () \ -_ = + \ [\] {} | \\;: \ x27 \ x22 ,. / <>? ~] {0.70} [A-Za-z0-9! @ # $% ^ & * () \ -_ = + \ [\] {} | \\;: \ x27 \ x22, ./<>?~$$) "value =" <? php print ($ fillPassword);?> "/>"
to the function to change the password in 'profile' (https: //agora.evalyn.app/?action=passwordchange).