forked from udacity/mws-restaurant-stage-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrestaurant.html
106 lines (100 loc) · 3.85 KB
/
restaurant.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<meta name="theme-color" content="#005555" />
<!-- Normalize.css for better cross-browser consistency -->
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
<!-- Main CSS file -->
<link rel="stylesheet" rel="preload" href="css/styles.css" type="text/css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin="" />
<link rel="manifest" href="/manifest.json">
<link rel="preconnect" href="http://localhost:1337/restaurants">
<title>Restaurant Info</title>
</head>
<body class="inside">
<!-- Beginning header -->
<header>
<!-- Beginning nav -->
<nav class="header-nav">
<h1>
<a href="./">Restaurant Reviews</a>
</h1>
</nav>
<p class="offline-alert" aria-live="assertive">You're offline</p>
<!-- Beginning breadcrumb -->
<nav aria-label="Breadcrumb" class="breadcrumb">
<ul id="breadcrumb">
<li>
<a href="./">Home</a>
</li>
</ul>
</nav>
<!-- End breadcrumb -->
<!-- End nav -->
</header>
<a class="skip-to-main" href="#restaurant-container">Skip to main content</a>
<!-- End header -->
<!-- Beginning main -->
<main id="maincontent">
<!-- Beginning map -->
<section id="map-container">
<div id="map" role="application" aria-label="map showing current restaurant's location"></div>
</section>
<!-- End map -->
<!-- Beginning restaurant -->
<section id="restaurant-container">
<h2 id="restaurant-name"></h2>
<img id="restaurant-img">
<p id="restaurant-cuisine"></p>
<p id="restaurant-address"></p>
<table id="restaurant-hours"></table>
<p><span class="fav-text"></span><span class="favourite" onclick="toggleFav()"></span></p>
</section>
<!-- end restaurant -->
<!-- Beginning reviews -->
<section id="reviews-container">
<div class="review-form-container">
<form id="review-form" onsubmit="submitReview(event)">
<div class="input-group">
<label for="name">Enter your name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="input-group">
<label for="rating">Enter your rating</label>
<input type="number" id="rating" name="rating" min="0" max="5" required>
</div>
<div class="input-textarea">
<label for="comment">Enter your comments</label>
<textarea name="comment" id="comment" cols="30" rows="10" required></textarea>
<button type="submit">Submit Review</button>
</div>
</form>
</div>
<ul id="reviews-list"></ul>
</section>
<!-- End reviews -->
</main>
<!-- End main -->
<!-- Beginning footer -->
<footer id="footer">
Copyright (c) 2017
<a href="/">
<strong>Restaurant Reviews</strong>
</a> All Rights Reserved.
</footer>
<!-- End footer -->
<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js" integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw=="
crossorigin=""></script>
<!-- Beginning scripts -->
<!-- Database helpers -->
<script type="text/javascript" src="js/dbhelper.js"></script>
<!-- Main javascript file -->
<script type="text/javascript" src="js/restaurant_info.js"></script>
<script type="application/javascript" rel="serviceWorker" charset="utf-8" src="./serviceworker.js"></script>
<script src="js/idb.js"></script>
<!-- End scripts -->
</body>
</html>