-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
202 lines (181 loc) · 7.99 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Volunteer Here</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Awesomplete Autocomplete -by Lea Verou -->
<link rel="stylesheet" href="assets/css/awesomplete.css" />
<!-- Awesomplete Autocomplete -by Lea Verou -->
<script src="assets/javascript/awesomplete.js" async></script>
<!--Google fonts-->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i|Pacifico" rel="stylesheet">
<!--Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Font Awesome link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<!-- Site specific overrides -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="main-container"> <!-- container for all website content -->
<div class="page-header"> <!-- Page Header -->
<h1>Volunteer Here... <br/>
<h2>Volunteer anywhere</h2>
</h1>
<!-- Single button -->
<div id="inputBox">
<button type="button" id="login" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Login <i class="fa fa-sign-in" aria-hidden="true"></i>
</button>
<input type="text" class="form-control" placeholder="USERNAME" id="username"/>
<div id="error" style="diplay:none;"></div>
<input type="password" class="form-control" placeholder="PASSWORD" display id="password"/>
<button type="submit" class="btn btn-default" id="submit1">Submit</button>
<div id="welcomeName"></div>
<button type="submit" class="btn btn-default" id="logout">Logout <i class="fa fa-sign-in" aria-hidden="true"></i>
</button>
</div>
</div> <!-- end of header -->
<div class="container" id="form-container"> <!-- container for form -->
<div class="panel panel-default" id="panelOverride">
<div class="panel-heading">Plan a trip:
</div>
<form> <!--users input -->
<div class="form-group">
<div class="row">
<div class="col-md-4">
<label for="usersOrigin">Flying from</label> <i class="fa fa-plane" aria-hidden="true"></i><br>
<input type="text" class="form-control awesomplete" id="usersOrigin" placeholder="City, State (ex: Orlando,FL)*">
</div>
<div class="col-md-4">
<label for="usersDestination">Flying to</label> <i class="fa fa-plane" aria-hidden="true"></i><br>
<input type="text" class="form-control awesomplete" id="usersDestination" placeholder="City, State (ex: Orlando,FL)*">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<div class="col-md-4"
<label for="departingDate">Departing Date</label>
<span class="glyphicon glyphicon-calendar" aria-hidden="true"></span>
<input type="date" class="form-control" id="departingDate">
</div>
<div class="col-md-4">
<label for="returningDate">Returning Date</label>
<span class="glyphicon glyphicon-calendar" aria-hidden="true"></span>
<input type="date" class="form-control" id="returningDate">
</div>
<div class="col-md-4">
<label for="volunteers"> Number of volunteers</label>
<select id="volunteers" class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>more than 6</option> <!-- if more than six have user specify a number -->
</select>
</div>
</div>
<button type="submit" class="btn btn-default" id="submit2"><span class='fa fa-search' aria-hidden="true"></span> Search</button>
<button type="submit" class="btn btn-default" id="submit3"><span class='fa fa-floppy-o' aria-hidden="true"> </span> Save Search</button>
<p>*destinations are limited to the United States</p>
</form>
</div>
</div> <!-- end of form container -->
<div id="featured-destinations" class="carousel slide" data-ride="carousel"> <!-- Carousel -->
<div class="c-wrapper">
<div class="carousel-inner" role="listbox">
<h1 class="destinations">Featured Destinations...</h1>
<div id="NYC" class="featureCity item active" name="New York City, NY">
<h2 class="city-name">NEW YORK CITY</h2>
</div>
<div id="AUSTIN" class="featureCity item" name="Austin, TX">
<h2 class="city-name">AUSTIN</h2>
</div>
<div id="WDC" class="featureCity item" name="Washington DC">
<h2 class="city-name">WASHINGTON D.C.</h2>
</div>
<div id="LA" class="featureCity item" name="Los Angeles, CA">
<h2 class="city-name">LOS ANGELES</h2>
</div>
<div id="CHICAGO" class="featureCity item" name="Chicago, IL">
<h2 class="city-name">CHICAGO</h2>
</div>
</div>
</div>
<a class="left carousel-control" href="#featured-destinations" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<!-- <span class="sr-only">Previous</span> -->
</a>
<a class="right carousel-control" href="#featured-destinations" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
</a>
</div>
</div> <!-- end of container -->
<a href="#" class="scroll" style="display: block;">
<i class="fa fa-long-arrow-up" aria-hidden="true"></i>
<span class="scroll">Scroll to top </span>
</a>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="volOpp">Volunteer Opportunities</h1>
</div>
</div>
<div class="row" id="vol">
<div id="volCol1" class="col-lg-6"></div>
<div id="volCol2" class="col-lg-6"></div>
</div>
</div>
<br>
<br>
<br>
<br>
<a href="#" class="scroll" style="display: block;">
<i class="fa fa-long-arrow-up" aria-hidden="true"></i>
<span>Scroll to top </span>
</a>
<div class="container">
<div class="row">
<div id="flights" class="col-lg-12">
<h1>Flights</h1>
<div class="flights"></div>
<div>
</div>
</div>
<a href="#" class="scroll" style="display: block;">
<i class="fa fa-long-arrow-up" aria-hidden="true"></i>
<span>Scroll to top </span>
</a>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="volOpp">Available Hotels</h1>
</div>
<center>
<form action="googlehotelsapi.html">
<button type="submit" class="submitCity btn btn-default" id="sumbit4"><span class='fa fa-search'></span> Search for Hotels</button>
</form>
</center>
</div>
<!-- <footer class="footer">
</footer> -->
<!-- Firebase JavaScript Link -->
<script src="https://www.gstatic.com/firebasejs/3.2.1/firebase.js"></script>
<!-- jQuery 2.2.4 -->
<script src="assets/javascript/jquery-2.2.4.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!--firebase-->
<script src="https://www.gstatic.com/firebasejs/3.2.1/firebase.js"></script>
<!--moment.js-->
<script src="https://cdn.jsdelivr.net/momentjs/2.14.1/moment.min.js"></script>
<!-- Local javascript operations file -->
<script src="assets/javascript/app.js"></script>
<!-- <script type="text/javascript" src="assets/javascript/flight.js"></script> -->
</body>
</html>