forked from The-Turing-s-Club/HackNitP3.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
335 lines (283 loc) · 11.6 KB
/
contact.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="themes/assets/css/myform.js" rel="javascript">
<link rel="shortcut icon" href="themes/assets/ico/favicon.ico">
<title>Bootstrappage.com free templates contact us </title>
<!-- Bootstrap core CSS -->
<link href="themes/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="themes/assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Custom styles for this template -->
<link href="themes/assets/css/carousel.css" rel="stylesheet">
</head>
<!-- NAVBAR
================================================== -->
<body>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = {
apiKey: "AIzaSyDu_fleKDHlwXVQBdm2hYj3fPbpxj20SS4",
authDomain: "hack-nitp-3.firebaseapp.com",
projectId: "hack-nitp-3",
storageBucket: "hack-nitp-3.appspot.com",
messagingSenderId: "556623192632",
appId: "1:556623192632:web:3fdceb86afdb96152ebccd",
measurementId: "G-268RBF8Q5Q"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
<!-- your other form fields go here -->
<form
action="https://formspree.io/f/xvovlpjq"
method="POST"
>
<label>
Your email:
<input type="text" name="_replyto">
</label>
<label>
Your message:
<textarea name="message"></textarea>
</label>
<!-- your other form fields go here -->
<button type="submit">Send</button>
</form>
<script src="https://formspree.io/js/formbutton-v1.min.js" defer></script>
<script>
window.formbutton=window.formbutton||function(){(formbutton.q=formbutton.q||[]).push(arguments)};
formbutton("create", {action: "https://formspree.io/f/xvovlpjq"})
</script>
<!-- modify this form HTML and place wherever you want your form -->
<!-- modify this form HTML and place wherever you want your form -->
<form id="my-form"
action="https://formspree.io/f/xvovlpjq"
method="POST"
>
<label>Email:</label>
<input type="email" name="email" />
<label>Message:</label>
<input type="text" name="message" />
<button id="my-form-button">Submit</button>
<p id="my-form-status"></p>
</form>
<!-- Place this script at the end of the body tag -->
<script>
window.addEventListener("DOMContentLoaded", function() {
// get the form elements defined in your form HTML above
var form = document.getElementById("my-form");
var button = document.getElementById("my-form-button");
var status = document.getElementById("my-form-status");
// Success and Error functions for after the form is submitted
function success() {
form.reset();
button.style = "display: none ";
status.innerHTML = "Thanks!";
}
function error() {
status.innerHTML = "Oops! There was a problem.";
}
// handle the form submission event
form.addEventListener("submit", function(ev) {
ev.preventDefault();
var data = new FormData(form);
ajax(form.method, form.action, data, success, error);
});
});
// helper function for sending an AJAX request
function ajax(method, url, data, success, error) {
var xhr = new XMLHttpRequest();
xhr.open(method, url);
xhr.setRequestHeader("Accept", "application/json");
xhr.onreadystatechange = function() {
if (xhr.readyState !== XMLHttpRequest.DONE) return;
if (xhr.status === 200) {
success(xhr.response, xhr.responseType);
} else {
error(xhr.status, xhr.response, xhr.responseType);
}
};
xhr.send(data);
}
</script>
<div class="navbar-wrapper">
<div class="container">
<div class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Bootstrap Restaurant</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class=""><a href="index.html">Home</a></li>
<li class=""><a href="about.html">About Us</a></li>
<li class="active"><a href="contact.html">Contact</a></li>
<li><a href="#tablebooking">Table Booking</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Indina <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">DRINKS</a></li>
<li><a href="#">STARTERS</a></li>
<li><a href="#">TANDOORI - CLAY OVEN - DISHES</a></li>
<li class="divider"></li>
<li class="dropdown-header">SEAFOOD MAIN COURSES</li>
<li><a href="#">CHICKEN MAIN COURSES</a></li>
<li><a href="#">LAMB MAIN COURSES</a></li>
<li><a href="#">RICE/BREDS</a></li>
<li><a href="#">ACCOMPANIMENTS</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Italian <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">DRINKS</a></li>
<li><a href="#">STARTERS</a></li>
<li><a href="#">TANDOORI - CLAY OVEN - DISHES</a></li>
<li class="divider"></li>
<li class="dropdown-header">SEAFOOD MAIN COURSES</li>
<li><a href="#">CHICKEN MAIN COURSES</a></li>
<li><a href="#">LAMB MAIN COURSES</a></li>
<li><a href="#">RICE/BREDS</a></li>
<li><a href="#">ACCOMPANIMENTS</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Chines <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">DRINKS</a></li>
<li><a href="#">STARTERS</a></li>
<li><a href="#">TANDOORI - CLAY OVEN - DISHES</a></li>
<li class="divider"></li>
<li class="dropdown-header">SEAFOOD MAIN COURSES</li>
<li><a href="#">CHICKEN MAIN COURSES</a></li>
<li><a href="#">LAMB MAIN COURSES</a></li>
<li><a href="#">RICE/BREDS</a></li>
<li><a href="#">ACCOMPANIMENTS</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="pageTitle">
<div class="container">
<h2>Contact Us</h2>
</div>
</div>
<div class="container">
<div class="bodyInner">
<p>
</p>
<p>
</p><p>
</p><p>
</p><p>
</p><p>
</p><p>
</p><p>
</p><p>
</p><p>
</p>
</div>
</div>
<div class="highlightSection">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="media">
<a href="menu/"><img src="http://dev.bombaytakeawayclub.com/assets/img/nepali-momo.png" alt="nepali-momo"> </a>
<h3 class="media-heading text-primary-theme">NEPALESE LAMB MOMO</h3>
<p>Steamed dumplings filled with slightly spiced minced meat served with special sauce.</p>
</div>
</div>
<div class="col-lg-4">
<div class="media"><a href="menu/"><img src="http://dev.bombaytakeawayclub.com/assets/img/gorkha-special-chicken.png" alt="GURKHA SPECIAL CHICKEN"> </a>
<h3 class="media-heading text-danger-theme">GURKHA SPECIAL CHICKEN</h3>
<p>Boneless chicken marinated in mustard, smoked chilli, herbs and spices slowly cooked in tandoor. </p>
</div>
</div>
<div class="col-lg-4">
<div class="media">
<a href="menu/"><img src="http://dev.bombaytakeawayclub.com/assets/img/lam-tikka.png" alt="Lam Tikka"> </a>
<h3 class="media-heading">LAMB TIKKA SPECIAL</h3>
<p>Tender pieces of lamb mixed with our own spices and gently cooked in clay oven. </p>
</div>
</div>
</div>
</div>
</div>
<div class="introSection">
<div class="container">
<div class="row">
<div class="col-lg-5">
<h3>Welcome to restaurent</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. <br><br>
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,
and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
<div class="col-lg-4">
<h3>Welcome to restaurent</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. <br><br>
</p>
</div>
<div class="col-lg-3">
<h3>Welcome to restaurent</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
</div>
</div>
</div>
<!-- FOOTER -->
<footer>
<div class="container">
<p class="pull-right"><a href="#">Back to top</a></p>
<p>© 2014 Company, Inc. · <a href="#">Privacy</a> · <a href="#">Terms</a></p>
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="themes/dist/js/bootstrap.min.js"></script>
<script src="themes/assets/js/holder.js"></script>
</body>
</html>