Reset fields

<button (click)="onReset()" class="btn btn-dark">Reset</button>
onReset() {
    this.loginForm.reset({
      firstName: '',
    });
}
Was this page helpful?