-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlists-index.html
40 lines (39 loc) · 1.54 KB
/
lists-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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>List Index</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="CSS/main.css">
<link rel="stylesheet" href="CSS/list-index.css">
<script src="https://www.gstatic.com/firebasejs/5.9.1/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyC-TNGhKhFtSMicH20PxCHVeauBKDFsITU",
authDomain: "jammin-movies.firebaseapp.com",
databaseURL: "https://jammin-movies.firebaseio.com",
projectId: "jammin-movies",
storageBucket: "jammin-movies.appspot.com",
messagingSenderId: "203686718902"
};
firebase.initializeApp(config);
</script>
</head>
<body>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="lists-index.html">All Lists Index</a></li>
<div id="login-signup">
<li><a class="login">Login</a></li>
<li><a href="signup.html">Sign Up</a></li>
</div>
</ul>
<div class="header"><h1>Lists Index</h1> <h3>This page is a WIP (subscribe button doesn't work as of now, but you can subscribe my manually adding the list name on your homepage)</h3></div>
<div class="list-index">
</div>
<script src = "JS/checkUser.js"></script>
<script src="JS/list-index.js"></script>
</body>
</html>