| 1234567891011121314151617181920212223242526272829303132 |
- <div id="editIngredient">
- <div class="sidebarIconButtons mobileHide">
- <button class="iconButton" onclick="controller.closeSidebar()">
- <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
- <line x1="5" y1="12" x2="19" y2="12"></line>
- <polyline points="12 5 19 12 12 19"></polyline>
- </svg>
- </button>
- </div>
- <h1 id="editIngTitle"></h1>
- <label>NAME:
- <input id="editIngName" type="text">
- </label>
- <label>CATEGORY:
- <input id="editIngCategory" type="text">
- </label>
- <label>CURRENT STOCK:
- <input id="editIngQuantity" type="number" min="0" step="0.01">
- </label>
- <label id="editBottleLabel" style="display: none;">
- <input type="text">
- </label>
- <div class="lineBorder"></div>
- <h3>DISPLAY UNIT</h3>
- </div>
|