recipes.ejs 977 B

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