-
Notifications
You must be signed in to change notification settings - Fork 92
Open
Description
form = new FormGroup({
username: new FormControl(null, [Validators.required, Validators.minLength(4)]),
password: new FormControl(null, Validators.required),
});
this.authService
.login(this.form.get('username')?.value, this.form.get('password')?.value )
.subscribe((response) => {
tap(response);
this.router.navigate(['/user']);
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
