password length added.

This commit is contained in:
2024-02-22 10:34:23 -05:00
committed by tokslaw-shruboak
parent 1423c015b2
commit 63458c1e9a
+1 -1
View File
@@ -96,7 +96,7 @@ export class RegisterPage implements OnInit {
verReg(){
if (this.username == null || this.username == '' || this.validateEmail(this.username) == false
|| this.password == null || this.password == ''
|| this.password == null || this.password == '' || this.password.length < 8
|| this.firstname == null || this.firstname == ''
|| this.lastname == null || this.lastname == ''
|| this.country == null || this.country == ''