| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="stylesheet" href="/merchantSetupPage/merchantSetup.css">
- <link rel="stylesheet" href="/shared/shared.css">
- </head>
- <body>
- <% include ../shared/header %>
- <div id="addIngredients" class="container">
- <h1>Add your first set of ingredients to your pantry</h1>
- <h3>Choose from our list of ingredients</h3>
-
- <table id="ingredient-display">
- <tr>
- <th>Add</th>
- <th>Ingredient</th>
- <th>Category</th>
- <th>Quantity</th>
- <th>Unit</th>
- </tr>
- </table>
- <button onclick="updateState(1)">Next</button>
- </div>
- <div id="newIngredients">
- <button onclick="newIngredientField()">+</button>
- </div>
-
-
- <script>
- let ingredients = <%- JSON.stringify(ingredients) %>;
- </script>
- <script src="/merchantSetupPage/merchantSetup.js"></script>
- </body>
- </html>
|