-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.57 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.57 KB
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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles/index.css" />
<link rel="stylesheet" type="text/css" href="node_modules/leaflet/dist/leaflet.css" />
<meta name="google-signin-client_id" content="956826923961-ag6k3d2ek14cec203u7qvdlbev8jp350.apps.googleusercontent.com">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
</head>
<body>
<div id="sidebar">
<!-- <a href='#' id='authorize-button' onclick='handleAuthClick();'>Sign in</a> -->
<button id="authorize-button" style="display: none;">Authorize</button>
<button id="signout-button" style="display: none;">Sign Out</button>
</div>
<div id="sidebarBlackout"></div>
<div id="map"></div>
<div id="chat"></div>
</body>
<script src="https://use.fontawesome.com/9ec16c1a36.js"></script>
<script src="auth/auth.js"></script>
<script src="js/socket.js"></script>
<script src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script>
<script src="node_modules/d3/build/d3.js"></script>
<script src="node_modules/leaflet/dist/leaflet-src.js"></script>
<script src="js/MainMap.js"></script>
<script src="js/MeetingsList.js"></script>
<script src="js/MeetingView.js"></script>
<script src="js/CreateMeetingView.js"></script>
<script src="js/ViewInvitesView.js"></script>
<script src="js/SidebarMgmtButtons.js"></script>
<script src="js/Sidebar.js"></script>
<script src="js/main.js"></script>
</html>