| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="stylesheet" href="/merchantSetupPage/merchantSetup.css">
- <link rel="stylesheet" href="/shared/shared.css">
- </head>
- <body>
- <% include ../shared/header %>
- <div 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>
- <div id="new-ingredient"></div>
- <!-- <button onclick="addField()">+</button> -->
- <button onclick="subData()">Finish</button>
- </div>
- <script>
- let ingredients = <%- JSON.stringify(ingredients) %>;
- let state = 0;
- </script>
- <script src="/merchantSetupPage/merchantSetup.js"></script>
- </body>
- </html>
|