Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. <div class="box">
  2. <section class="container">
  3. <article class="well form-inline pull-left col-lg-5">
  4. <legend>Gestion du panier</legend>
  5. <label class="col-lg-3">Identifiant</label> : <input type = "number" id = "id" style="width:120px" class="input-sm formcontrol"></input><br><br>
  6. <label class="col-lg-3" >Quantité</label> : <input type = "number" id = "qte" style="width:120px" class="input-sm formcontrol"></input><br><br>
  7. <label class="col-lg-3">Prix</label> : <input type = "number" id = "prix" style="width:120px" class="input-sm formcontrol"></input><br><br>
  8. <button class="btn btn-primary" type="submit" onclick="ajouter()"><span class="glyphicon glyphicon-shoppingcart"></span> Ajouter au panier</button>
  9. </article>
  10. </section>
  11. <section class="container">
  12. <article class="well form-inline pull-left col-lg-5">
  13. <legend>Contenu du panier</legend>
  14. <table id="tableau" class="table">
  15. <thead>
  16. <tr>
  17. <th>Code</th>
  18. <th>Qte</th>
  19. <th>Prix unitaire</th>
  20. <th>Prix de la ligne</th>
  21. <th>Supprimer</th>
  22. </tr>
  23. </thead>
  24. </table>
  25. <br><label>Prix du panier total
  26. </label> : <label id = "prixTotal"></label>
  27. <label id = "nbreLignes" hidden>0</label>
  28. </article>
  29. </section>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement