generated from comp1800/web_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbookmarks.html
56 lines (44 loc) · 1.93 KB
/
bookmarks.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
<!DOCTYPE html>
<html>
<head>
<title>Saved Shopping List</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../styles/bookmarks.css">
<link rel="stylesheet" href="../styles/nav.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>
<div class="card-container">
<div id="reminder"> Your Saved Lists: </div>
<!-- This is where the lists go-->
<div id="listCards"></div>
<div class="cardContent">
</div>
<template id="pastListTemplate">
<div class="cardContent">
<h2 id="list-title">
</h2>
<div id="use">
<button id="reuse" type="button" class="btn btn-primary custom-button">Use</button>
</div>
<div id="remove">
<button id="delete" type="button" class="btn btn-primary custom-button">Delete</button>
</div>
</template>
<footer id="footerPlaceholder"></footer>
<script src="./scripts/firebaseAPI_BBY31.js"></script>
<script src="./scripts/skeleton.js"></script>
<script src="./scripts/bookmarks.js"></script>
<script src="./scripts/dosearch.js"></script>
<script src="./scripts/market.js"></script>
</body>