-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
127 lines (96 loc) · 5.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Grub Wiz</title>
<!-- jQuery Reference-->
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<!-- BOOTSTRAP REFERENCES -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous">
</script>
<!-- FONT AWESOME -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!--MAP QUEST REFERENCE-->
<script src="https://api.mqcdn.com/sdk/mapquest-js/v1.3.2/mapquest.js"></script>
<link type="text/css" rel="stylesheet" href="https://api.mqcdn.com/sdk/mapquest-js/v1.3.2/mapquest.css"/>
<!-- STYLESHEET -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container text-center font-weight-bold container-fluid mt-4">
<h1>Grub Whiz</h1>
</div>
<div container id="area" class="text-center text-white font-weight-bold container-fluid" style="padding:5%;">
<!-- <select class="custom-select" id="selector" style="width:30%;">
<option selected>How would you like to search</option>
<option value="cuisine">Cuisine </option>
<option value="rating">Ratings</option>
<option value="location">Zipcode or Address</option>
</select>-->
<label>Pick Your Flavor</label><br>
<select class="custom-select" id="cuisine-sel" >
<option value="-" disabled selected>Finding Your Local Options</option>
</select>
<br>
<button type="button" id="submit-btn" class="btn btn-success btn-lg my-2 mb-5">Submit</button>
<!-- <button type="button" id="goBack" class="btn btn-secondary btn-lg mx-4">Go Back</button>-->
<div id="restaurants-div" class="display_none">
<table id="restaurants-table" class="table table-hover text-left">
</table>
</div>
</div>
<!-- MODAL -->
<div class="modal" id="results-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" style="max-width:575px" role="document">
<div class="modal-content text-dark p-4">
<div class="modal-header">
<h5 id="results-h" class="modal-title"></h5>
</div>
<div id="restaurant-div" class="text-dark list-group">
<ul id="restaurant-ul">
</ul>
</div>
<div class="modal-footer">
<a href="rpg-game.html" class="btn btn-info" target="_blank">WAITING FOR A TABLE? PLAY FOOD
FIGHT!</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- MODAL END -->
<!-- FOOTER START-->
<footer id="pageFooter" class="fixed-bottom bg-dark text-center text-muted">
<ul>
<li class="list-inline-item">
<h4 class="display-5 mt-2">JAVASCRIPT • </h4>
</li>
<li class="list-inline-item">
<h4 class="display-5 mt-2">JQUERY • </h4>
</li>
<li class="list-inline-item">
<h4 class="display-5 mt-2">HTML/CSS • </h4>
</li>
<li class="list-inline-item">
<h4 class="display-5 mt-2">BOOTSTRAP</h4>
</li>
</ul>
<a href="https://github.com/vtchris/" target="_blank" class="btn btn-secondary text-left mb-3 mr-4"><span
class="fab fa-github pr-2"></span>Portfolio: Chris Ross</a>
<a href="https://github.com/jbjrock" target="_blank" class="btn btn-secondary text-left mb-3 mr-4"><span
class="fab fa-github pr-2"></span>Portfolio: Jarvis Maness</a>
<a href="https://github.com/vilagen" target="_blank" class="btn btn-secondary text-left mb-3 mr-4"><span
class="fab fa-github pr-2"></span>Portfolio: David Hart</a>
<a href="https://github.com/Jrchild13" target="_blank" class="btn btn-secondary text-left mb-3 mr-4"><span
class="fab fa-github pr-2"></span>Portfolio: Joshua Childress</a>
</footer>
<!-- FOOTER END-->
<script src="assets/javascript/APIapp_1.js"></script>
<script src="assets/javascript/zomato.js"></script>
<script src="assets/javascript/dom.js"></script>