-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbobs_burgers.html
executable file
·114 lines (103 loc) · 4.26 KB
/
bobs_burgers.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
<!DOCTYPE html>
<html lang = "en-us">
<head>
<meta charset = "utf-8" />
<title>Bob's Burgers</title>
<link rel="stylesheet" href="./static/css/common-nav-style.css">
<link rel="stylesheet" href="./static/css/restaurant_page.css">
<link rel="stylesheet" href="./static/css/menu_button_nav.css">
<link rel="stylesheet" href="./static/css/review-section.css">
<!-- Firebase App (the core Firebase SDK) is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-app.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous">
</script>
<!-- Add Firebase products that you want to use -->
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-firestore.js"></script>
<script src="https://cdn.firebase.com/libs/firebaseui/3.5.2/firebaseui.js"></script>
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/3.5.2/firebaseui.css" />
<!-- Configuration connecting webfiles to firebase -->
<script src = "./static/javascript/firebase_config_foodhub.js"></script>
</head>
<body>
<ul id="menu-btn-menulist">
<li><img class="close" src="./image/close.png" /></li>
<li><a href="./main.html">Home</a></li>
<li><a href="./restaurant_list.html">Restaurant</a></li>
</ul>
<nav class="nav-bar-container">
<img id="menuBTN" class="menu-button" src="./image/menu.png" alt="">
<a href="./main.html">
<div class="title-logo-container">
<img src="" alt="">
<h3 class="header-title">FoodHub</h3>
</div>
</a>
<a href="#"><span id="login-button"></span></a>
</nav>
<div class="review-section-container">
<div class="review-section">
<a href = "./bobsburgers_review.html" id = "leave-comment">Leave a Review</a>
<div class="restaurant-info-container">
<h3 id="restaurant4-name"></h3>
<span id = "restaurant4-address"></span><br/>
<span id = "restaurant4-phone-number"></span>
<h4>Operation Hours</h4>
<span>Mon-Fri 10:00 A.M. - 10:00 P.M.</span><br/>
<span>Sat 10:00 A.M. - 12:00 P.M.</span><br/>
<span>Sun 11:00 A.M. - 9:00 P.M.</span>
<div class="restaurant-menu-container">
<div class = "row">
<div class="menu-item">
<img src = "#" alt = "menu image 1" id = "menuItem1" />
<h3 id = "menu1-name"></h3>
<h3 id = "menu1-price"></h3>
</div>
<div class="menu-item">
<img src = "#" alt = "menu image 2" id = "menuItem2" />
<h3 id = "menu2-name"></h3>
<h3 id = "menu2-price"></h3>
</div>
<div class="menu-item">
<img src = "#" alt = "menu image 3" id = "menuItem3" />
<h3 id = "menu3-name"></h3>
<h3 id = "menu3-price"></h3>
</div>
</div>
<div class = "row">
<div class="menu-item">
<img src = "#" alt = "menu image 4" id = "menuItem4" />
<h3 id = "menu4-name"></h3>
<h3 id = "menu4-price"></h3>
</div>
<div class="menu-item">
<img src = "#" alt = "menu image 5" id = "menuItem5" />
<h3 id = "menu5-name"></h3>
<h3 id = "menu5-price"></h3>
</div>
</div>
</div>
<div class = "comments-container">
<h2>Comments</h2>
</div>
</div>
</div>
</div>
<div class="restaurant-info-container"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src = "./static/javascript/app.js"></script>
<script src="./static/javascript/create_user.js"></script>
<script src="./static/javascript/createRestaurant4.js"></script>
<script>
createRestaurant4();
getMenu1();
getMenu2();
getMenu3();
getMenu4();
getMenu5();
createComment();
authentication();
</script>
</body>
</html>