forked from dentonkerr/Event-Seeker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (95 loc) · 4.77 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css" />
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<!--Import materialize.css-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Event Seeker</title>
</head>
<body>
<div id="map"> </div>
<!-- Modal Structure -->
<div id="modal1" class="modal">
<div class="modal-content">
<div class="container">
<div class="row center-align" id="imageModal"><img src="assets/images/eventseekerlogo.png" /></div>
<form id="myForm" >
<div class="row">
<div class="col s6" id='startInfo'>
<div class="mat-div">
<label for="userStart" class="mat-label">Starting Location</label>
<input type="text" class="mat-input" id="userStart" placeholder="Starting Location">
<br>
<label for="userEnd" class="mat-label">End Location</label>
<input type="text" class="mat-input" id="userEnd" placeholder="End Location">
</div>
</div>
<div class="col s6" id='endInfo'>
<div class="mat-div">
<label for="userDateStart" class="mat-label">Start Date</label>
<input type="date" class="datepicker" id="userDateStart" placeholder="Start Date">
<br>
<label for="userDateEnd" class="mat-label">End Date</label>
<input type="date" class="datepicker" id="userDateEnd" placeholder="End Date">
</div>
</div>
</div>
<div class="row">
<div class="col s6" id='firstCol'>
<input type="checkbox" id="concerts" />
<label for="concerts">Concerts</label>
<br>
<input type="checkbox" id="festivals" />
<label for="festivals">Festivals</label>
<br>
<input type="checkbox" id="kids&family" />
<label for="kids&family">Kids & Family</label>
<br>
<input type="checkbox" id="performingArts" />
<label for="performingArts">Performing Arts</label>
<br>
</div>
<div class="col s6" id='secondCol'>
<input type="checkbox" id="food" />
<label for="food">Food</label>
<br>
<input type="checkbox" id="sports" />
<label for="sports">Sports</label>
<br>
<input type="checkbox" id="conferences" />
<label for="conferences">Conferences</label>
<br>
<input type="checkbox" id="comedy" />
<label for="comedy">Comedy</label>
<br>
</div>
</div>
</div>
</div>
<br>
<div class="modal-footer">
<a href="#!" id="submit" class="modal-action waves-effect waves-green btn-flat">Submit</a>
</div>
</form>
</div>
</div>
<ul id="slide-out" class="side-nav fixed">
<div class="container" id="targetDiv">
</div>
</ul>
<a href="#" data-activates="slide-out" class="button-collapse" style="z-index: 9999;">
</a>
<a class="waves-effect waves-light btn modal-trigger" id="modal2" href="#modal2">Click a location on map to find events!</a>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://api.mqcdn.com/sdk/mapquest-js/v1.2.0/mapquest.js"></script>
<script type="text/javascript" src="https://api.eventful.com/js/api"></script>
<!--Import jQuery before materialize.js-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>