0 / 60 seg.

With the following reactive form markup, what would you add to wire up a call to an onSubmit class method?

<form [formGroup]="form">
  <input type="text" formControlName="username" />
  <button type="submit" [disabled]="form. invalid">Submit</button>
</form>