forked from YangVictor05/1800_202330_BBY31
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshoppingb.html
48 lines (34 loc) · 1.72 KB
/
shoppingb.html
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
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Blank Shopping List Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles/shoppingb.css">
<!-- link for icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<!-- link for bootstrap -->
<!-- link for firebase -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.css" />
</head>
<body>
<header id="navbarPlaceholder"></header>
<!--Placeholder for shopping list items, dynamic list from "Research page" requires JS-->
<section class="container">
<div class="centerempty">
<p class="notif">There’s nothing in your shopping list yet, </p>
<button type="button" class="redirect" onclick="goToHomePage()">Let’s add some items!</button>
</div>
</section>
<footer id="footerPlaceholder"></footer>
<script src="./scripts/firebaseAPI_BBY31.js"></script>
<script src="./scripts/market.js"></script>
<script src="./scripts/skeleton.js"></script>
<script src="./scripts/shoppinglistblank.js"></script>
<script src="./scripts/dosearch.js"></script>
</body>
</html>