-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofilesList.html
96 lines (79 loc) · 3.28 KB
/
profilesList.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Dashboard</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap-tools/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for thist template -->
<link href="bootstrap-tools/css/blog-home.css" rel="stylesheet">
<link href="CSS/dashboardStyle.css" rel="stylesheet">
</head>
<body class="secondary-color">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg fixed-top primary-color dashboard-nav">
<div class="collapse navbar-collapse w-100 flex-md-column">
<div class="row">
<div class="col">
<h2 class="text-color"><b>Pseudo Social</b></h2>
</div>
</div>
</div>
</nav>
<!-- Page Content -->
<div class="container-fluid">
<div class="row">
<!-- Spacer -->
<div class="col-md-3">
<div class="row">
<div class="col-md-8"></div>
<div class="col-md-4">
<button display="none" onclick="navigateBack()" class="my-5 btn btn-outline-secondary" type="button"> < Back </button>
</div>
</div>
</div>
<!-- Posts -->
<div class="col-md-6">
<!-- Dashboard header -->
<h1 id="resultsForLabel" class="my-5 text-color"></h1>
<!-- Dashboard loading posts alert -->
<div class="text-center text-color" id="loading-posts-alert"></div>
<!-- Dashboard body -->
<div id="postsList"></div>
</div>
<!-- Spacer -->
<div class="col-md-3"></div>
</div>
</div>
<!-- /.container -->
<!-- Bootstrap core JavaScript -->
<script src="bootstrap-tools/vendor/jquery/jquery.min.js"></script>
<script src="bootstrap-tools/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="JS/profilesList.js"></script>
</body>
<!-- Firebase Library-->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.1.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.1/firebase-storage.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.1.1/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.1/firebase-firestore.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyAWqhFbPbb6PPy0RmTQfeTUWwtuzxZFXCM",
authDomain: "pseudosocial2.firebaseapp.com",
projectId: "pseudosocial2",
storageBucket: "pseudosocial2.appspot.com",
messagingSenderId: "401372825231",
appId: "1:401372825231:web:8d69431cca485d290b12fa"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
</html>