editRecipe.ejs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <div id="editRecipe">
  2. <div class="sidebarIconButtons">
  3. <button class="iconButton tooltipContainer" 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. <span class="tooltip">CLOSE</span>
  9. </button>
  10. </div>
  11. <label>NAME:
  12. <input id="editRecipeName" type="text">
  13. </label>
  14. <h1 id="editRecipeNoName"></h1>
  15. <h3>INGREDIENTS</h3>
  16. <div id="editRecipeIngList"></div>
  17. <button id="addRecIng" class="iconButton">
  18. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  19. <circle cx="12" cy="12" r="10"></circle>
  20. <line x1="12" y1="8" x2="12" y2="16"></line>
  21. <line x1="8" y1="12" x2="16" y2="12"></line>
  22. </svg>
  23. </button>
  24. <div class="lineBorder"></div>
  25. <h3>PRICE</h3>
  26. <input id="editRecipePrice" type="number" min="0" step="0.01">
  27. <div class="lineBorder"></div>
  28. <div class="buttonBox">
  29. <button id="editRecipeSubmit" class="sidebarButton">UPDATE</button>
  30. <button id="editRecipeCancel" class="sidebarButton">CANCEL</button>
  31. </div>
  32. <template id="editRecipeIng">
  33. <div class="editRecipeIng">
  34. <button class="iconButton">
  35. <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  36. <polyline points="3 6 5 6 21 6"></polyline>
  37. <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>
  38. </svg>
  39. </button>
  40. <p></p>
  41. <select></select>
  42. <input type="number" min="0" step="0.01">
  43. </div>
  44. </template>
  45. </div>