-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestaurant.html
More file actions
39 lines (34 loc) · 1.32 KB
/
restaurant.html
File metadata and controls
39 lines (34 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Intake</title>
<link rel="stylesheet" href="./lib/stylesheets/application.css">
</head>
<body>
<div class="main">
<div class="header restaurant-search">
<h3>Enter restaurant name and location:</h3>
<input type="text" name="restaurant-name" value="" placeholder="Restaurant Name">
<input type="text" name="restaurant-city" value="" placeholder="City">
<button class="restaurant-search-button linkbutton" type="button" name="button">Search</button>
</div>
<div class="header restaurants">
<p>Click the correct restaurant under investigation:</p>
</div>
<div class="options-restaurants">
</div>
<div class="header menu-items">
<p>Click any menu item(s) that you want included in your questionnaire:</p>
</div>
<div class="menus">
</div>
<div class="links">
<a><button type="button" name="back" class="link back"><<Back</button></a>
<a href="builder.html"><button type="button" name="next" class="link next restaurant">Next>></button></a>
</div>
</div>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="bundle.js"></script>
</body>
</html>