-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (136 loc) · 6.98 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to Burger Point!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navmenu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="reservation.html" class="inactivelink">Reservation</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div class="reserveheader">
<h1>Reserve a Table</h1>
</div>
<p class="reservetext">
We can not guarantee you a table in the rush hours. How about reserving a table and enjoying your Burger Point experience with a peace of mind?
</p>
<div class="reservation">
<form action="/confirm.html">
<div class="flexcontainer1">
<div>
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname">
</div>
<div>
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname">
</div>
</div>
<div class="flexcontainer2">
<div>
<label for="email">Email</label>
<input type="email" id='email' name="mailaddress">
</div>
<div>
<label for="tel">Telephone Number</label>
<input type="tel" id="tel" name="phone-number">
</div>
</div>
<div class="flexcontainer3">
<div>
<label for="date">Date</label>
<input type='date' id="date" style=width:150px name="reserv-date">
</div>
<div>
<label for="time">Time</label>
<input type='time' id="time" style=width:150px name="reserv-time">
</div>
</div>
<div class="guesttextandbuttons">
<p class="guesttext">Number of guests:</p>
<div class="buttons">
<input type="radio" label="1" id="g1" name="guests" value="1 guest">
<label for="g1">1</label>
<input type="radio" id="g2" name="guests" value="2 guests">
<label for="g2">2</label>
<input type="radio" id="g3" name="guests" value="3 guests">
<label for="g3">3</label>
<input type="radio" id="g4" name="guests" value="4 guests">
<label for="g4">4</label>
<input type="radio" id="gmore" name="guests" value="more than 4 guests">
<label for="gmore">more</label>
</div>
</div>
<div class="tableselection">
<label for="tables">An inside or outside table?</label><br>
<select name="tables" id="tables" style="width: 156px;" >
<option value="An Inside Table">Inside</option>
<option value="An Outside Table">Outside</option>
<option value="Doesn't Matter">Doesn't matter</option>
</select>
</div>
<div class="requestbox">
<label for="comments">Special Requests</label>
<textarea name="comments" id="comments" cols="48" rows="5"></textarea>
</div>
<div class="subsub">
<label for="subscribe">I agree to the Terms and Conditions.</label><br>
<input type="checkbox" id="subscribe">
<input type="submit" value="Submit">
</div>
</form>
<p class="reserveinfo">
You will receive an SMS when your reservation is confirmed. Your reservation will be canceled when you are 15 minutes late. In case you want to cancel or change your reservation, please let us informed at least 2 hours before by e-mail or telephone.
</p>
<hr>
<div class="terms">
<p>Terms and Conditions:</p>
<ol>
<li>As a condition to the grant of rights hereunder, each Article and any other matter containing Licensed
Material shall bear a properly located permanently affixed copyright notice in Burger Point's name (e.g., "(C) Burger Point"), and
in the name of Can Yapalak, or such other notice as Burger Point specifies to Licensee in writing:
<ul>
<li>Contract of Service</li>
<li>Data Storage Policy</li>
<li>Non-Disclosure Agreement</li>
</ul>
</li>
<li>Licensee will comply with such instructions as to form, location and content of the notice as Disney may give from time to time.</li>
<li>Licensee will not, without Burger Point's prior written consent, affix to any Article or any other matter containing Licensed Material
a copyright notice in any other name.</li>
<li>If through inadvertence or otherwise a copyright notice on any Article or other such matter should appear in Licensee's name or the
name of a third party, Licensee hereby agrees to assign to Disney the copyright represented by any such copyright notice
in Licensee's name and, upon request, cause the execution and delivery to Burger Point of whatever documents are necessary
to convey to Burger Point that copyright represented by any such copyright notice.</li>
<li>If by inadvertence a proper copyright
notice is omitted from any Article or other matter containing Licensed Material, Licensee agrees at Licensee's expense
to use all reasonable efforts to correct the omission on a such Articles or other matter in process of manufacture or in
distribution:
<ul>
<li>Residence Information</li>
<li>Telephone Number</li>
<li>E-Mail Address</li>
<li>Personal Details</li>
</ul>
</li>
<li>Licensee agrees to advise Burger Point promptly and in writing of the steps being taken to correct any such
omission and to make the corrections on existing Articles which can be located.</li>
</ol>
</div>
</div>
<div class="footer">
<p>Burger Point™ All Rights Reserved</p>
<div class="followus">
<p>Follow Us:</p> <a href="https://www.instagram.com"><img src="insta.png" alt="Instagram"></a> <a
href="https://www.twitter.com"><img src="twitter.png" alt="Twitter"></a>
</div>
</div>
</body>
</html>