Created
October 8, 2017 19:00
-
-
Save NMZivkovic/258cd97eae86a0b8a1ff0be0a7080351 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
<div class="form-group col-sm-2"> | |
<label for="editUser">Edit User:</label> | |
<input class="form-control" type="text" placeholder="Name" [(ngModel)]="this.editUser.name" [ngModelOptions]="{standalone: true}"/> | |
<input class="form-control" type="text" placeholder="Blog" [(ngModel)]="this.editUser.blog" [ngModelOptions]="{standalone: true}"/> | |
<input class="form-control" type="text" placeholder="Age" [(ngModel)]="this.editUser.age" [ngModelOptions]="{standalone: true}"/> | |
<input class="form-control" type="text" placeholder="Location" [(ngModel)]="this.editUser.location" [ngModelOptions]="{standalone: true}"/> | |
<button class="btn btn-default" (click)="updateUser()"> Edit User </button> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment