orderDetails.ejs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <div id="orderDetails">
  2. <div class="sidebarIconButtons">
  3. <button class="iconButton" onclick="controller.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 id="orderDetailName"></h1>
  17. <h3 id="orderDetailDate"></h3>
  18. <h3 id="orderDetailTime"></h3>
  19. <div id="orderIngredients"></div>
  20. <div class="lineBorder"></div>
  21. <div id="orderTotalPrice">
  22. <h3>GRAND TOTAL</h3>
  23. <p></p>
  24. </div>
  25. <template id="orderIngredient">
  26. <div class="orderIngredient">
  27. <p></p>
  28. <p></p>
  29. <p></p>
  30. </div>
  31. </template>
  32. </div>