added checklist
This commit is contained in:
parent
a153b0032b
commit
7e0ac0f93b
3 changed files with 25 additions and 22 deletions
41
index.html
41
index.html
|
@ -26,26 +26,27 @@
|
|||
<div id="Client" class="tabcontent">
|
||||
<h3>Client Information</h3>
|
||||
<p>Hello, welcome to our grocery store. <br>
|
||||
We are here to help you choose the perfect groceries for your store.</p>
|
||||
We are here to help you choose the perfect groceries.</p>
|
||||
<i><strong>Please Choose a Category:</strong></i>
|
||||
<select
|
||||
id="dietSelect"
|
||||
name="dietSelect"
|
||||
class="sumo"
|
||||
onchange="populateListProductChoices(this.id, 'displayProduct')"
|
||||
>
|
||||
<option value=""></option>
|
||||
|
||||
<option value="Vegetarian">Vegetarian</option>
|
||||
<option value="GlutenFree">Gluten Free</option>
|
||||
<option value="VegetarianANDGluten-Free">
|
||||
Vegetarian and Gluten-Free
|
||||
</option>
|
||||
<option value="Organic">Organic</option>
|
||||
<option value="Non-organic">Non-Organic</option>
|
||||
<option value="None">None</option>
|
||||
</select>
|
||||
|
||||
<br>
|
||||
<label for="category-foods1"> Vegetarian</label>
|
||||
<input type="checkbox" id ="Vegetarian" value="Vegetarian" onchange="populateListProductChoices(this.id, 'displayProduct')">
|
||||
<br>
|
||||
|
||||
<label for="category-foods1"> Gluten-Free</label>
|
||||
<input type="checkbox" id="GlutenFree" value="GlutenFree" onchange="populateListProductChoices(this.id, 'displayProduct')">
|
||||
<br>
|
||||
<label for="category-foods1"> Organic</label>
|
||||
<input type="checkbox" id="Organic" value="Organic" onchange="populateListProductChoices(this.id, 'displayProduct')">
|
||||
<br>
|
||||
<label for="category-foods1"> Non-Organic</label>
|
||||
<input type="checkbox" id="Non-Organic" value="Non-Organic" onchange="populateListProductChoices(this.id, 'displayProduct')">
|
||||
<br>
|
||||
<label for="category-foods1"> None</label>
|
||||
<input type="checkbox" id="None" value="None" onchange="populateListProductChoices(this.id, 'displayProduct')">
|
||||
<br>
|
||||
|
||||
<i><strong>Please Choose a Characteristic:</strong></i>
|
||||
<select class="sumo" name="characterSelect">
|
||||
<option value=""></option>
|
||||
|
@ -86,7 +87,9 @@
|
|||
<div id="Cart" class="tabcontent">
|
||||
<h3>Shopping Cart</h3>
|
||||
<p>The items you have added to your list will appear here.</p>
|
||||
<div id="displayCart"></div>
|
||||
<div id="displayCart">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<p class="copyright">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue