I tried going through the bwlow tutorial to do form validation in angular 2 https://angular.io/docs/ts/latest/guide/forms.html
But it just returns a blank page.
However, if I replace the following line
<form *ngIf="active" (ngSubmit)="onSubmit()" #heroForm="ngForm">
with
<form>
at least i get some form elements appearing. The difficult part is that there seems to be no error messages that can direct me to the problem.
Can anyone help?