-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsaved.html
76 lines (67 loc) · 2.97 KB
/
saved.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
64
65
66
67
68
69
70
71
72
73
74
75
76
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- ================ STYLES ================ -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
crossorigin="anonymous">
<title>HoroscopIO</title>
</head>
<body onload="myFunction()">
<div class="load-3" id="loader">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<div id="allPage">
<div class="navigation" id="nav">
<center>
<div class="title">
<div class="person">
<div class="photo" id="photoNavBar">
<img src="assets/images/splashScreen.jpg" alt="">
</div>
<div class="name" id="name">
</div>
</div>
</div>
<div class="items">
<a href="yesterday.html"><li>Yesterday's horoscope</li></a>
<a href="mainPage.html"><li>Today's horoscope</li></a>
<a href="tomorrow.html"><li>Tomorrow's horoscope</li></a>
<a href="profile.html"><li>Profile</li></a>
<a href="about.html"><li>About Signs</li></a>
<a href="saved.html"><li>Saved</li></a>
<a onclick="logout();">
<li>Logout</li>
</a>
</div>
<div class="buttonNav" id="buttonNav">
<i class="fas fa-arrow-left fa-lg fas-custom"></i>
</div>
</center>
</div>
<div class="bgDark"></div>
<div class="container-fluid no-m-p" data-swipe-threshold="20" data-swipe-timeout="500" data-swipe-ignore="false">
<i class="fas fa-ellipsis-h fasMainBtn " id="openNav"></i>
<img src="assets/images/mainPage.png" alt="" class="mainPageImage">
<center>
<h1 class="title-saved">Your saved stories</h1>
</center>
<div class="container mt-50" id="cardHolder">
</div>
</div>
</div>
<!-- ================ SCRIPTS ================ -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/pure-swipe.min.js"></script>
<script src="js/index.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.0.4/firebase.js"></script>
<script src="app/config.js"></script>
<script src="app/saved.js"></script>
</body>
</html>