Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <form id="task-form">
  2. <div class="form-group">
  3. <input type="number" id="id" placeholder="codigo" class="form-control">
  4. </div>
  5. <div class="form-group">
  6. <input type="number" id="cantidad" placeholder="cantidad" class="form-control">
  7. </div>
  8. <button type="submit" class="btn btn-primary btn-block text-center">
  9. Agregar
  10. </button>
  11. </form>
  12.  
  13.  
  14. <div class="col-md-7">
  15. <div class="bg-white">
  16. <table class="table table-bordered table-sm">
  17. <thead>
  18. <tr>
  19. <td>NĀ°</td>
  20. <td>Codigo</td>
  21. <td>Producto</td>
  22. <td>Cantidad</td>
  23. <td>Precio</td>
  24. <td>Total</td>
  25. </tr>
  26. </thead>
  27. <tbody id="tasks"></tbody>
  28. </table>
  29. </div>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement