-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.html
87 lines (76 loc) · 3.19 KB
/
report.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>College Website</title>
<link rel="stylesheet" href="index_styles.css" />
<link rel="stylesheet" href="history.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
</head>
<body>
<!--Navbar-->
<section id="reportTitleSection" class="colouredSection">
<!-- navbar -->
<div class="container-fluid">
<nav class="navbar navbar-expand-md">
<a class="navbar-brand">
<img src="Logo.png" width="60">
</a>
<a class="navbar-brand">Pinewood School <br> Summer College Counseling Database </a>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<button class="btn btn-outline-warning" id="homeButton" onclick="window.location.href = '/index.html';">
Back Home
</button>
</li>
</nav>
</div>
</section>
<hr>
<div id="addReports"></div>
<script src="https://www.gstatic.com/firebasejs/7.5.0/firebase-app.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/7.5.0/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.5.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.5.0/firebase-auth.js"></script>
<script>
var firebaseConfig = {
apiKey: "AIzaSyDAMD1hMJYS7upXHipLG_HlPxhtDwkRVK8",
authDomain: "college-counseling-database.firebaseapp.com",
databaseURL:
"https://college-counseling-database-default-rtdb.firebaseio.com",
projectId: "college-counseling-database",
storageBucket: "college-counseling-database.appspot.com",
messagingSenderId: "1085147306385",
appId: "1:1085147306385:web:080af2eb2caea2e44ee230",
measurementId: "G-MGN0MY84XX",
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
const auth = firebase.auth();
const db = firebase.firestore();
const analtics = firebase.analytics();
</script>
<script src="report.js" charset="utf-8"></script>
</body>
</html>