| 12345678910111213141516171819202122232425262728293031323334353637 |
- <div id="addRecipe" class="sidebarHide">
- <button class="sidebarIconButton" onclick="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>
- <h1>Add a recipe</h1>
- <div class="recipeBasicInfo">
- <label>Name:
- <input id="name" type="text">
- </label>
- <label>Price:
- <input id="price" type="number" step="0.01" min="0">
- </label>
- <label># of Ingredients
- <input id="ingredientCount" type="number" step="1" min="1" onchange="recipeBookStrandObj.changeRecipeCount()">
- </label>
- </div>
- <div id="recipeInputIngredients">
- <div>
- <label>Ingredient:
- <select></select>
- </label>
- <label>Quantity:
- <input type="number" step="0.01" min="0">
- </label>
- </div>
- </div>
-
- </div>
|