on submit redirect to another page angular code example
Example 1: how click button and redirect angular
<a class="btn" routerLink="/votes">Check votes</a>
Example 2: angular redirect on submit
constructor(private router: Router) { }
onSubmit() {
// some stuff
this.router.navigate(['/search']);
}