generated from comp1800/web_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlistempty.html
63 lines (43 loc) · 1.56 KB
/
listempty.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saved Shopping Lists</title>
<!-- Google icon link & style -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<style>
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24
}
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
</style>
<!-- link to css -->
<link rel="stylesheet" href="../styles/searchresultempty.css">
<!-- FIREBASE 8 CDNs -->
<!-- Firestore for database -->
<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>
</head>
<header id="navbarPlaceholder"></header>
<body>
<div class="centerempty">
<p class="notif">You haven't saved any lists yet.</p>
<button type="button" class="redirect">Let’s save one</button>
</div>
<footer id="footerPlaceholder"></footer>
<script src="./scripts/firebaseAPI_BBY31.js"></script>
<script src="./scripts/market.js"></script>
<script src="./scripts/searchresults.js"></script>
<script src="./scripts/skeleton.js"></script>
<script src="./scripts/dosearch.js"></script>
</body>
</html>