recipeBook.ejs 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <div id="recipeBookStrand" class="strand">
  2. <div class="strandHead">
  3. <h1 class="strandTitle">RECIPE BOOK</h1>
  4. <div class="buttonBox">
  5. <label id="showHiddenRecipes" class="button">
  6. <input id="hiddenRecipesCheckbox" type="checkbox">
  7. SHOW HIDDEN
  8. </label>
  9. <button id="recipeUpdate" class="button mobileHide"></button>
  10. </div>
  11. </div>
  12. <div class="searchBar">
  13. <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">
  14. <circle cx="11" cy="11" r="8"></circle>
  15. <line x1="21" y1="21" x2="16.65" y2="16.65"></line>
  16. </svg>
  17. <input id="recipeSearch" class="searchInput" type="text" placeholder="SEARCH">
  18. </div>
  19. <div id="recipeList"></div>
  20. <template id="recipe">
  21. <div class="choosable tall">
  22. <p></p>
  23. <p></p>
  24. </div>
  25. </template>
  26. </div>