orderDetails.ejs 695 B

123456789101112131415161718192021222324
  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. <template id="orderIngredient">
  14. <div class="orderIngredient">
  15. <p></p>
  16. <p></p>
  17. <p></p>
  18. </div>
  19. </template>
  20. </div>