Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <form [formGroup]="form" (ngSubmit)="submitForm()" novalidate>
  2. <avr-input-text
  3. formControlName="firstName"
  4. label="First name"
  5. placeholder="e.g. John"
  6. ></avr-input-text>
  7.  
  8. <avr-input-text
  9. formControlName="lastName"
  10. label="Last name"
  11. placeholder="e.g. Doe"
  12. ></avr-input-text>
  13.  
  14. <button class="btn btn-primary">Submit</button>
  15. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement