-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmapAPI.html
More file actions
95 lines (79 loc) · 3.04 KB
/
mapAPI.html
File metadata and controls
95 lines (79 loc) · 3.04 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
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
<!DOCTYPE html>
<html>
<head>
<!-- DO NOT REORDER SCRIPTS!! -->
<title>ComRad</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="./scripts/apiScript.js"></script>
<script src="./scripts/homeScript.js"></script>
<script src="./scripts/createProject.js"></script>
<script src="./scripts/joinProject.js"></script>
<script src="./scripts/echo.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="datestyle.css">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<!--CREATE DATE PICKER-->
<!-- <script>
$(function () {
$("#datepicker").datepicker();
});
var meetupDate;
var meetupLocation;
var meetupProj;
</script> -->
</head>
<body>
<div class="navigationContainer">
<a class='navButton' id="homeNav" onclick="homeClick()"></a>
<a href="home.html" class='navButton' id="overNav">Manage Projects and Tasks</a>
<a href="mapAPI.html" class='navButton' id="meetupNav">Manage Meetups</a>
</div>
<header>
<div class="logInOutContainer">
<!-- trying to removie php -->
<form action="includes/logout.php" class="login-form" id="logoutContainer" method="POST">
<button type="submit" name="submit">Logout</button>
</form>
</div>
</header>
<div class="titleBox">
<h2 id='welcome_user'></h2>
<h1>Create a Meetup!</h1>
</div>
<div class="widgetBoardII">
<div id="projectSection">
<h2>Select your project!</h2>
<select class="dropdown" id="chooseProject"></select>
</div>
<div id="chooseDate">
<h2>Select the date of your meetup!</h2>
<p>
<input type="date" id="datepicker" placeholder="Date">
</p>
</div>
<div id="chooseMap">
<h2>Select the location of your meetup!</h2>
<div id="googleMap" style="width:100%;height:400px;"></div>
</div>
<div id="submitBlock">
<button id="submitMeetup" onclick="submitMeetup()">Submit My Meetup</button>
</div>
<div class="widget" id="overallMeetups">
<h2>My Meetups</h2>
<table id="displayAllMeetups">
<tr>
<th>Project Name</th>
<th>Date</th>
<th>Location</th>
</tr>
</table>
</div>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD_clIa1ef9K_AfCf4-U7sHAI1STxfB_tw&callback=myMap"></script>
<!--OUR API KEY (DO NOT DELETE!) AIzaSyD_clIa1ef9K_AfCf4-U7sHAI1STxfB_tw -->
</body>
</html>