Guest User

Untitled

a guest
Jul 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <div class="form-row">
  2. <div class="form-group col-md-5">
  3. <label>Purchase price</label>
  4. <input type="text" class="form-control" formControlName="purchaseprice">
  5. </div>
  6. <div class="form-group col-md-2">
  7. <label>Taxes</label>
  8. <select class="form-control" formControlName="taxes">
  9. <option>21%</option>
  10. <option>10%</option>
  11. <option>4%</option>
  12. </select>
  13. </div>
  14. <div class="form-group col-md-5">
  15. <label>Purchase price + Taxes.</label>
  16. <input type="text" class="form-control" formControlName="pricetaxes">
  17. </div>
  18. </div>
Add Comment
Please, Sign In to add comment