I have this form:
<form (ngSubmit)="onSubmit()" #form="ngForm">
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" ngModel id="name" class="form-control">
</div>
...
</form>
Inside the .ts file I reach the form with @ViewChild("form", {static:false}) myForm: NgForm
Now, starting from the field myForm, what is the best/easy way to reach and manipulate the other HTML elements inside the form, for example, the label element?
Thank you.