-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
52 lines (39 loc) · 1.54 KB
/
home.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>User List</title>
<link rel="stylesheet" href="home.css">
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script src="https://www.gstatic.com/firebasejs/8.2.6/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.6/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.6/firebase-database.js"></script>
<meta name="google-signin-scope" content="profile email">
<meta name="google-signin-client_id" content="859063326524-i104bft5cv439l78ic5j5dhpvopjblem.apps.googleusercontent.com">
<!-- <script async-->
<!-- src="https://maps.googleapis.com/maps/api/js?key={API_KEY}&libraries=distance_matrix,places">-->
<!-- </script>-->
<script src = "config.js"></script>
<script src="dropdownFooter.js"></script>
<script src="home.js">
</script>
<script>
if(localStorage["id"] && localStorage["name"] && localStorage["email"]) {
setID();
}else{
window.open ('index.html','_self');
}
</script>
</head>
<body>
<div id="listView" style="display:block">
<p>Search for student</p>
<div id="studentList">
</div>
</div>
</body>
</html>