Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

angular form initialse

content_copy
<form [formGroup]="profileForm">

  <label for="first-name">First Name: </label>
  <input id="first-name" type="text" formControlName="firstName">

  <label for="last-name">Last Name: </label>
  <input id="last-name" type="text" formControlName="lastName">

</form>
Source by angular.io #
 
PREVIOUS NEXT
Tagged: #angular #form #initialse
ADD COMMENT
Topic
Name
3+5 =