merchantSetup.ejs 809 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="/merchantSetupPage/merchantSetup.css">
  5. <link rel="stylesheet" href="/shared/shared.css">
  6. </head>
  7. <body>
  8. <% include ../shared/header %>
  9. <div class="container">
  10. <h1>Add your first set of ingredients to your pantry</h1>
  11. <table id="ingredient-display">
  12. <tr>
  13. <th>Add</th>
  14. <th>Ingredient</th>
  15. <th>Category</th>
  16. <th>Quantity</th>
  17. <th>Unit</th>
  18. </tr>
  19. </table>
  20. </div>
  21. <script>let ingredients = <%- JSON.stringify(ingredients) %>;</script>
  22. <script src="/merchantSetupPage/merchantSetup.js"></script>
  23. </body>
  24. </html>