editIngredient.ejs 949 B

1234567891011121314151617181920212223242526272829303132
  1. <div id="editIngredient">
  2. <div class="sidebarIconButtons mobileHide">
  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. </div>
  10. <h1 id="editIngTitle"></h1>
  11. <label>NAME:
  12. <input id="editIngName" type="text">
  13. </label>
  14. <label>CATEGORY:
  15. <input id="editIngCategory" type="text">
  16. </label>
  17. <label>CURRENT STOCK:
  18. <input id="editIngQuantity" type="number" min="0" step="0.01">
  19. </label>
  20. <label id="editBottleLabel" style="display: none;">
  21. <input type="text">
  22. </label>
  23. <div class="lineBorder"></div>
  24. <h3>DISPLAY UNIT</h3>
  25. </div>