Skip to content

Instantly share code, notes, and snippets.

@nirlanka
Last active August 5, 2018 12:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nirlanka/6d460e6faf25a59193219dced5b25333 to your computer and use it in GitHub Desktop.
Save nirlanka/6d460e6faf25a59193219dced5b25333 to your computer and use it in GitHub Desktop.
<form #f="ngForm" (ngSubmit)="onSubmit()">
<input type="text" [(ngModel)]="user.name" required>
<input type="text" [(ngModel)]="user.email" required>
<button type="submit"
[disabled]="!f.valid">Submit!</button>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment