diff --git a/src/main/webapp/app/login/login.component.ts b/src/main/webapp/app/login/login.component.ts index 6c3358a..1ae75e2 100644 --- a/src/main/webapp/app/login/login.component.ts +++ b/src/main/webapp/app/login/login.component.ts @@ -27,7 +27,7 @@ export class LoginComponent implements OnInit, AfterViewInit { errorUserExists = false; loginForm = this.fb.group({ - username: [null, [Validators.required, Validators.email, Validators.minLength(5), Validators.maxLength(254)]], + username: [null, [Validators.required, Validators.email, Validators.maxLength(254)]], password: [null, [Validators.required, Validators.minLength(8), Validators.maxLength(50)]], rememberMe: [false], });