Last active
October 14, 2017 17:26
-
-
Save alexzuza/d56b4751751d619999dae73e3d4faf76 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form #myForm="ngForm"> | |
<div> | |
<label>Firstname:</label> | |
<input type="text" name="firstName" ngModel> | |
</div> | |
<div> | |
<label>Lastname:</label> | |
<input type="text" name="lastName" ngModel> | |
</div> | |
</form> | |
<pre>{{ myForm.value | json }}</pre> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment