fix(register): fix nothing happening after registration (CAS-79) #198

Merged
csimonis merged 2 commits from bugfix/CAS-79 into main 2025-05-15 12:33:14 +00:00
Showing only changes of commit 64a1155eed - Show all commits

View file

@ -21,14 +21,14 @@ export class RegisterComponent {
constructor(
private fb: FormBuilder,
private authService: AuthService,
private authService: AuthService
) {
this.registerForm = this.fb.group({
email: ['', [Validators.required, Validators.email]],
username: ['', [Validators.required, Validators.minLength(3)]],
password: ['', [Validators.required, Validators.minLength(6)]],
});
}
}
get form() {
return this.registerForm.controls;