-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.61 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Text-based Webshop</title>
</head>
<body>
<div class="container">
<h1 class="my-4">Ceci n'est pas une Webshop</h1>
<div id="storePage">
<a href="#" id="goToCart" class="btn btn-secondary mb-4">Review Cart</a>
<h3 class="my-4">All the goodies..</h3>
<input type="text" id="search" class="form-control" placeholder="Search products">
<ul id="productList" class="list-group mt-4">
<!-- Products will be generated here -->
</ul>
</div>
<div id="cartPage" class="d-none">
<a href="#" id="backToStore" class="btn btn-secondary mb-4">Back to Store</a>
<h3 class="my-4">Your bag is filled up with.</h3>
<ul id="cart" class="list-group">
<!-- Cart items will be generated here -->
</ul>
<button id="checkout" class="btn btn-primary mt-4">Checkout</button>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/6.4.6/fuse.min.js"></script>
<script src="products.js"></script>
<script src="script.js"></script>
</body>
</html>