-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
<div class="modal fade modal-wrapper" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> | ||
<div class="modal-dialog" role="document"> | ||
<div class="modal-content"> | ||
<div class="modal-header modal-title"> | ||
<h5 class="modal-title text-center" id="exampleModalLabel">Generate Shopping List</h5> | ||
</div> | ||
<h5 class="modal-title ms-4">Choose an inventory to use</h5> | ||
<div class="modal-body modal-container"> | ||
<div class="form-group"> | ||
<select class="form-select" id="shopping-list" data-style="btn-primary"> | ||
<option disabled selected>... Select inventory ... </option> | ||
<option value="item1">Inventory 1</option> | ||
<option value="item2">Inventory 2</option> | ||
<option value="item3">Inventory 3</option> | ||
</select> | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-primary" id="generate-button">Generate</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |