Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 360 Bytes

File metadata and controls

15 lines (13 loc) · 360 Bytes
<form [formGroup]="myForm" (ngSubmit)="onSubmit()">
  <ion-checkbox
    formControlName="agree"
    helperText="Agree to the terms before continuing"
    errorText="You must agree to the terms to continue"
  >
    I agree to the terms and conditions
  </ion-checkbox>

  <br />

  <ion-button type="submit" size="small">Submit</ion-button>
</form>