I\'m using Angular2-rc5, and I\'m currently getting an error on my login page. I\'m trying to make a form but the console throws exceptions telling me that it can\'t find my
You are adding the formControlName to the label and not the input.
formControlName
You have this:
Email
Try using this:
Update the other input fields as well.