I’m trying to embed a link to our terms of service and privacy policy in a checkbox label and wanted to know what they best way to do this is in Ionic 2+. I also wanted to know if it is possible to open a modal using a click even instead of navigating to another page.
<ion-item>
<ion-label text-wrap>Agree to <a [href]="href"><span class="terms_privacy_text">Terms of Service</span></a> and <span class="terms_privacy_text" >Privacy Policy</span></ion-label>
<ion-checkbox [(ngModel)]="account.terms" name="terms" #terms="ngModel" required></ion-checkbox>
</ion-item>