forked from Connor218/UrbanExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (107 loc) · 5.17 KB
/
index.html
File metadata and controls
131 lines (107 loc) · 5.17 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
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
<!DOCTYPE html>
<html>
<head>
<lang="en-us">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Urban Explorer</title>
<!-- Added link to the bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Added link to the jQuery Library -->
</head>
<body>
<div class="row" >
<div class= "col-md-4 col-sm-4 " id = "top-left-oneThird">
<div class="container" id = "futureLogo" > </div>
</div>
<div class= "col-md-4 col-sm-4 " id = "cityWeather">
<!-- <nav class="navbar-brand bg-dark col-md-4" id = "brand"> -->
<div class="container" id = "Logo" > <img src ="assets/images/sitelogo-invert.png" style = "margin-left:2em;" alt ="site logo"> </div>
<!-- <div class ="count"></div> -->
<!-- </nav> -->
</div>
<div class= "col-md-4 col-sm-4 " id = "top-right-oneThird">
<div class="container" id = "futureSearch" > </div>
</div>
</div>
<!-- Retrieved Weather display data will be displayed here -->
<div class="row" id="landing-filler-top-wrapper">
<div class= "col-md-12 col-sm-12 " id="landing-filler-top">
</div>
</div>
<div class="container">
<div class="row" id = "searchOriginal">
<!-- <div class="jumbotron col-md-9 col-sm-6" id = "buttonGroup"> -->
<!-- </div> -->
<div class="jumbotron col-md-4 col-sm-4 landing-filler" > </div>
<div class="jumbotron col-md-4 col-sm-4 landing-filler" >
<form id ="myform" class="form-inline">
<label for="Purpose" style= "padding-bottom: 2em;"> Enter an address to explore food nearby</label>
<input class="form-control mr-sm-2" type="search" id= "searchField" placeholder="Enter Address" aria-label="Search">
<button class="btn btn-outline-light my-2 my-sm-0" id = "searchButton" type="submit">Search</button>
</form>
<div id="recentsearches"></div>
</div>
<div class="jumbotron col-md-4 col-sm-4 landing-filler" >
</div>
<!-- <form class="jumbotron col-md-12 col-sm-6" id="game-form">
<input type="text" id="game-input" value=""><br>
<input id="add-game" type="submit" class="badge badge-pill badge-secondary" value="Add a game">
</form> -->
</div>
<!-- MOST Important hidden div to the place api to work don't delete all the time-->
<div id="map"></div>
<div class="row" id="contentContainer">
<!-- <table class="table table-striped table-dark">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name of Place</th>
<th scope="col">Address</th>
<th scope="col">Phone Number</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Cafe</td>
<td>Nob Hill</td>
<td>555-5555</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Restaurant</td>
<td>SOMA</td>
<td>555-5555</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Ice Cream Shop</td>
<td>Sunset</td>
<td>555-5555</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Restaurant</td>
<td>SOMA</td>
<td>555-5555</td>
</tr>
</tbody>
</table> -->
</div>
<div class="row" id="foodButtonWrapper">
<!-- <img class ="imgButtons" data-type = "vegan" src = "assets/images/foodIcons.png" alt = "imageButtons"> -->
</div>
<!-- create table to hold list of places -->
</div>
<footer class="footer ">copyright urbanexplorer.com <br> <div class ="count"></div></footer>
<!--make sure to put javascript on the bottom to alter the DOM, otherwise DOM not defined, can't alter DOM content with js method or function-->
<!-- <script src="assets/javascript/urbanExplorerApp.js"></script> -->
<script src="https://www.gstatic.com/firebasejs/4.12.0/firebase.js"></script>
<!-- <script src="https://www.gstatic.com/firebasejs/5.0.2/firebase.js"></script> -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBGnYxlsr-8atPpbWbMsM2crsD-kah9JAI&libraries=places"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="assets/javascript/urbanExplorerApp.js"></script>
</body>
</html>