-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (107 loc) · 5.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unpush</title>
<link rel="stylesheet" href="./index.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
</head>
<body>
<!--Reserve Table Section-->
<!--Reserve Table Section-->
<section id="Reserve">
<h2 class="reserve-title">RESERVE A TABLE</h2>
<div class="booking-form-w3layouts">
<form action="#" method="post">
<h2 class="sub-heading-agileits">Reservation Form</h2>
<div clclearass="main-flex-w3ls-sectns">
<div class="field-agileinfo-spc form-w3-agile-text1">
<select class="form-control">
<option>Western Cape</option>
<option value="Lorem Ipsum">Gauteng</option>
<option value="Adipiscing">Eastern Cape</option>
</select>
</div>
<div class="field-agileinfo-spc form-w3-agile-text2">
<select class="form-control">
<option>Cape Town</option>
<option value="Lorem Ipsum">Sandton</option>
<option value="Adipiscing">Port alfred</option>
</select>
</div>
</div>
<div class="main-flex-w3ls-sectns">
<div class="field-agileinfo-spc form-w3-agile-text1">
<select class="form-control">
<option>Takeaway</option>
<option value="Yes">Yes</option>
<option value="No">No</option>
</select>
</div>
<div class="field-agileinfo-spc form-w3-agile-text2">
<select class="form-control">
<option>Seat Down</option>
<option value="Yes">Yes</option>
<option value="No">No</option>
</select>
</div>
</div>
<div class="main-flex-w3ls-sectns">
<div class="field-agileinfo-spc form-w3-agile-text1">
<input id="datepicker" name="Text" type="text" placeholder="Reservation Date" value="" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'mm/dd/yyyy';}" required="" class="hasDatepicker">
</div>
<div class="field-agileinfo-spc form-w3-agile-text2">
<input type="text" id="timepicker" name="Time" class="timepicker form-control hasWickedpicker" placeholder="Reservation Time" value="" onkeypress="return false;">
</div>
</div>
<h3 class="sub-heading-agileits">Personal Details</h3>
<div class="main-flex-w3ls-sectns">
<div class="field-agileinfo-spc form-w3-agile-text1">
<input type="text" name="Name" placeholder="Full Name" required="">
</div>
<div class="field-agileinfo-spc form-w3-agile-text2">
<input type="text" name="Phone no" placeholder="Phone Number" required="">
</div>
</div>
<div class="field-agileinfo-spc form-w3-agile-text">
<input type="email" name="Email" placeholder="Email" required="">
</div>
<div class="clear"></div>
<input type="submit" value="Submit">
<input type="reset" value="Clear Form">
<div class="clear"></div>
</form>
</div>
</section>
<!--End of Reserve Table Section-->
<!--Contact Section-->
<section id="contact">
<h1 class="title">CONTACT US</h1>
<h2 class="subtitle">We are here to assist you.</h2>
<div class="contact">
<br><br><br><br>
<div class="body-form">
<div class="contact-form">
<h2 class="subtitle">Type your query here.</h2>
<form id="contactForm" onsubmit="return validateForm()" action="https://formspree.io/f/xpzvwnez"
method="POST">
<input type="text" name="name" placeholder="Your Name" />
<input type="email" name="email" placeholder="Your E-mail Address" />
<textarea name="message" rows="8" placeholder="Your Message"></textarea>
<button type="submit" class="btn-send">Get a Call Back</button>
</form>
</div>
</div>
<div class="address">
<h2>Ethos Restaurant <br>
Corner Eastwood and, <br>Parks Blvd, Rosebank, 2196</h2>
</div>
<div class="body-form">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3581.716528006627!2d28.04034477541312!3d-26.140784177115716!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1e9573f06b434189%3A0x4ee012ab17248e82!2sEthos%20Restaurant!5e0!3m2!1sen!2sza!4v1705534527176!5m2!1sen!2sza" width="450" height="400git " style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</section>
<script src="main.js"></script>
</body>
</html>