-
Notifications
You must be signed in to change notification settings - Fork 0
/
delegates.html
60 lines (59 loc) · 1.82 KB
/
delegates.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin</title>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-analytics.js"></script>
<style>
ul{
list-style-type: none;
margin: 0;
padding: 0;
border: 0px black solid;
}
span{
margin-right: 4%;
margin-left: 4%;
margin-top: 4px;
margin-bottom: 4px;
display: inline-block;
}
li{
margin: 8px;
padding: 8px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
}
li:hover{
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div class="main">
<h1>DELEGATES</h1>
<ul id="delegates-list">
</ul>
</div>
<script>
var firebaseConfig = {
apiKey: "AIzaSyAIhpUSvaxctfeujpsZ4DfLmB_D0-r8rC8",
authDomain: "kathmandu-university-mun.firebaseapp.com",
databaseURL: "https://kathmandu-university-mun.firebaseio.com",
projectId: "kathmandu-university-mun",
storageBucket: "kathmandu-university-mun.appspot.com",
messagingSenderId: "931975476942",
appId: "1:931975476942:web:8e74a58ba4c2ef7e3c829f",
measurementId: "G-FL9GVZ1S3C"
};
firebase.initializeApp(firebaseConfig);
firebase.analytics();
const db = firebase.firestore();
db.settings({ timestampsInSnapshots: true});
</script>
<script src="js/delegates.js"></script>
</body>
</html>