Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <tr>
  2. <td colspan="2" class="estuadiciontitulo">
  3. <h2><label>Experiencia laboral</label></h2>
  4. </td>
  5. </tr>
  6. <tr *ngFor="let obj of dataarray">
  7. <td>
  8. <div id="texto" class="col">
  9. <label >Empresa</label>
  10. <input type="text" id="cheoption" required>
  11. </div>
  12. </td>
  13. <td>
  14. <div class="col">
  15. <label id="texto">Años laborados</label>
  16. <input type="number" name="phone" id="phone" required>
  17. </div>
  18. </td>
  19. </tr>
  20.  
  21. <tr>
  22. <td class="col">
  23. <button type="button" (click)="addNewRow()">Adicionar campos</button>
  24. </td>
  25. <td>
  26. <button type="button" (click)="removeForm(1)" >Quitar campos</button>
  27. </td>
  28. </tr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement