recipeBook.ejs 1010 B

12345678910111213141516171819202122232425262728
  1. <div id="recipeBookStrand" class="strand">
  2. <div class="strandHead">
  3. <h1 class="strandTitle">RECIPE BOOK</h1>
  4. <% if(merchant.pos === "none"){ %>
  5. <button class="button mobileHide" onclick="controller.openSidebar('addRecipe')">NEW</button>
  6. <% }else{ %>
  7. <button id="posUpdateRecipe" class="button mobileHide">UPDATE</button>
  8. <% } %>
  9. </div>
  10. <div class="searchBar">
  11. <svg class="searchButton" width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  12. <circle cx="11" cy="11" r="8"></circle>
  13. <line x1="21" y1="21" x2="16.65" y2="16.65"></line>
  14. </svg>
  15. <input id="recipeSearch" class="searchInput" type="text" placeholder="SEARCH">
  16. </div>
  17. <div id="recipeList"></div>
  18. <template id="recipe">
  19. <div class="choosable tall">
  20. <p></p>
  21. <p></p>
  22. </div>
  23. </template>
  24. </div>