orderDetails.ejs 819 B

12345678910111213141516171819202122232425262728293031
  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. </div>
  10. <h1></h1>
  11. <h3></h3>
  12. <div id="orderIngredients"></div>
  13. <div class="lineBorder"></div>
  14. <div id="orderTotalPrice">
  15. <h3>Grand Total</h3>
  16. <p></p>
  17. </div>
  18. <template id="orderIngredient">
  19. <div class="orderIngredient">
  20. <p></p>
  21. <p></p>
  22. <p></p>
  23. </div>
  24. </template>
  25. </div>