Skip to content

Instantly share code, notes, and snippets.

@arrenv
arrenv / app.component.html
Last active October 4, 2018 10:19 — forked from jamesmusgrave/campaign-monitor-angular.html
Angular 5/6 method to handle Campaign Monitor's secure subscribe link signup
<form [formGroup]="subForm" (ngSubmit)="submitsubForm()">
<mat-form-field>
<input matInput type="text" name="email" placeholder="Email Address" formControlName="emailFormControl">
</mat-form-field>
<button mat-flat-button>Submit</button>
</form>