recipes.ejs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <table>
  15. <thead>
  16. <tr>
  17. <th>Name</th>
  18. <th>Quantity</th>
  19. <th></th>
  20. </tr>
  21. </thead>
  22. <tbody></tbody>
  23. </table>
  24. </div>
  25. <script>let merchant = <%- JSON.stringify(merchant) %>;</script>
  26. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  27. <script src="../shared/validation.js"></script>
  28. <script src="/recipesPage/recipes.js"></script>
  29. </body>
  30. </html>