recipes.ejs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="/recipesPage/recipes.css">
  5. <link rel="stylesheet" href="/shared/shared.css">
  6. </head>
  7. <body>
  8. <% include ../shared/header %>
  9. <% include ../shared/banner %>
  10. <h1 id="title">Recipes</h1>
  11. <button id="recipeUpdate" onclick="recipesPage.updateRecipes()">Update Recipes</button>
  12. <div id="recipes" class="container"></div>
  13. <div id="ingredient" class="container">
  14. <button id="addButton">Add Ingredient</button>
  15. <table>
  16. <thead>
  17. <tr>
  18. <th>Name</th>
  19. <th>Quantity</th>
  20. <th></th>
  21. </tr>
  22. </thead>
  23. <tbody></tbody>
  24. </table>
  25. </div>
  26. <script>let merchant = <%- JSON.stringify(merchant) %>;</script>
  27. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  28. <script src="../shared/validation.js"></script>
  29. <script src="/recipesPage/recipes.js"></script>
  30. </body>
  31. </html>