orderDetails.ejs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <div id="orderDetails">
  2. <div class="sidebarIconButtons">
  3. <button class="iconButton" onclick="closeSidebar()">
  4. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  5. <line x1="5" y1="12" x2="19" y2="12"></line>
  6. <polyline points="12 5 19 12 12 19"></polyline>
  7. </svg>
  8. </button>
  9. <button id="removeOrderBtn" class="iconButton">
  10. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  11. <polyline points="3 6 5 6 21 6"></polyline>
  12. <path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>
  13. </svg>
  14. </button>
  15. </div>
  16. <h1></h1>
  17. <h3></h3>
  18. <div id="orderIngredients"></div>
  19. <div class="lineBorder"></div>
  20. <div id="orderTotalPrice">
  21. <h3>GRAND TOTAL</h3>
  22. <p></p>
  23. </div>
  24. <template id="orderIngredient">
  25. <div class="orderIngredient">
  26. <p></p>
  27. <p></p>
  28. <p></p>
  29. </div>
  30. </template>
  31. </div>