Created
October 14, 2017 17:36
-
-
Save alexzuza/814c4266919e39bf1908eabe6663b3fa 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> | |
<address></address> | |
</form> | |
<pre>{{ myForm.value | json }}</pre> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment