-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsaved_pets_index.html
41 lines (34 loc) · 1.51 KB
/
saved_pets_index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description" content="Web site created using create-react-app"
/>
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="/feed.css"/>
<script src="https://kit.fontawesome.com/355d6f4d57.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<!-- <script src="https://unpkg.com/[email protected]/babel.js"></script> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<title>Saved Pets</title>
</head>
<body>
<header>
<div class = "title-small">Pet-Tential</div>
<div class = "nav-buttons">
<a class = "btn" href="/feed.html"><i class="fas fa-home fa-lg"></i></a>
<a class = "btn" href = "account.html"><i class="fas fa-user-cog fa-lg"></i></a>
<a class = "btn" href="goodBye.html" onclick="signOut();"><i class="fas fa-sign-out-alt fa-lg"></i></a>
</div>
</header>
<div class = "title-small" style="text-align: center">Saved pets</div>
<section class="savedPetsPlace"id="rootSa">
</section>
<script src = "authorizationKey.js"></script>
<script src="saved_pets_index.js"></script>
</body>
</html>