-
Notifications
You must be signed in to change notification settings - Fork 0
/
appointments.html
227 lines (194 loc) · 11 KB
/
appointments.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous" />
<link rel="stylesheet" href="css/appointments.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/timepicker/1.3.5/jquery.timepicker.min.css">
<title>Kotikutz | Booking</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="js/parallax.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="index.html">KotiKutz</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="About_us.html">About Us</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarServices" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Services
</a>
<div class="dropdown-menu bg-dark" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="services_male.html">Mens</a>
<a class="dropdown-item" href="services_female.html">Ladies</a>
</div>
</li>
<li class="nav-item active">
<a class="nav-link zoom" href="appointments.html">Book an Appointment</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item dropdown logged-out" style="display: none;">
<a class="nav-link dropdown-toggle active" href="#" id="navbarLogin" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Account
</a>
<div class="dropdown-menu bg-dark" aria-labelledby="navbarDropdown">
<a class="dropdown-item logged-out active" href="sign_in.html">Log In</a>
<a class="dropdown-item logged-out" href="sign_up.html">Sign Up</a>
</div>
</li>
<li class="nav-item logged-in" style="display: none;">
<a href="index.html" class="nav-link" id="logOut">Log Out</a>
</li>
</ul>
</div>
</nav>
<div class="serv-contain">
<div class="parallax-window" data-parallax="scroll" data-image-src="img/services_male.jpg" id="parallax"></div>
<div class="centered">
<h1 class="text-center" style="color: white; font-family: cursive; font-size: 3rem;">
Book an appointment
</h1>
</div>
</div>
<div class="container text-center my-5">
<h1>Book an Appointment</h1>
<p>Our online bookings service operates between 10:00a.m. and 6:00p.m.</p>
<p>During opening hours, we'll call you back within 1 hour to confirm your appointment. Outside opening hours we will call you soon after 10:00am</p>
<p>Your data is safe with us! We will only use your details to process your salon booking, and won't share them with third parties.</p>
<form id="appointment">
<div class="form-row">
<div class="form-group col-md">
<label for="name">Name</label>
<input type="text" class="form-control" placeholder="Name" id="name" required>
</div>
<div class="form-group col-md">
<label for="contact_no">Contat No</label>
<input type="tel" class="form-control" pattern="[7-9]?[0-9]{9}" placeholder="Contact No eg: 9819673054" id="contact_no" required>
</div>
</div>
<div class="form-row">
<div class="form-group col-md">
<label for="date">Date</label>
<input type="date" class="form-control" id="date" min="" required>
</div>
<div class="form-group col-md">
<label for="timepicker">Time slot</label>
<input class="form-control" id='timepicker' type='text' name='timepicker' required readonly>
</div>
</div>
<div class="form-row">
<div class="form-group col-md">
<label for="gender">Gender</label>
<select id="gender" class="form-control" required>
<option value data-isdefault="true">Gender</option>
<option value="male">male</option>
<option value="female">female</option>
</select>
</div>
<div class="form-group col-md">
<label for="email">Email</label>
<input type="email" id="email" class="form-control" placeholder="Email id" required>
<small id="emailHelp" class="form-text text-muted" style="float: left;">We'll never share your email with anyone else.</small>
</div>
</div>
<div class="form-row">
<div class="form-group col-md">
<label for="loc">Location</label>
<select name="loc" id="loc" class="form-control" required>
<option value data-isdefault="true">Select a location</option>
<option>KotiKutz (Silver Mist socty. Opp Orchid Hospital)</option>
<option>KotiKutz (Divine Homes .Next to Ramas Furniture Mall)</option>
<option>Katri Kangi & Me (AEROPOLIS Society)</option>
<option>KotiKutz (Dhanori)</option>
<option>KotiKutz (Viman Nagar)</option>
</select>
</div>
<div class="form-group col-md">
<label for="services">Service (Optional)</label>
<select multiple class="form-control" id="services">
<optgroup label="Mens">
<option>Haircut/Style/ Blow Dry</option>
<option>Hair Colour and Highlights</option>
<option>Shaving</option>
<option>Facial/Clean up</option>
<option>Hair Spa/Body Spa</option>
<option>Manicure and Pedicure</option>
</optgroup>
<optgroup label="Womens">
<option>Haircut/Style/ Blow Dry</option>
<option>Hair Colour and Highlights</option>
<option>Eyebrows (Threading)</option>
<option>Hair Spa/Body Spa</option>
</optgroup>
</select>
</div>
</div>
<button type="submit" class="btn btn-primary mb-2">Submit</button>
</form>
</div>
<div class="container-fluid my-5 py-3 text-center" id="bottom">
<h1 class="text-center">
KotiKutz
</h1>
<p class="text-center mb-5">
KotiKutz is the salon in your town acquainted with top notch
tools and professionals for stunning looks and absolute luxury.
</p>
<div>
<a href="index.html" class="text-body mb-2 mx-5">Home</a>
<a href="About_us.html" class="text-body mb-2 mx-5">About Us</a>
<a href="services_male.html" class="text-body mb-2 mx-5">Services</a>
<a href="sign_in.html" style="display: none;" class="logged-out text-body mb-2 mx-5">Log In</a>
<a href="sign_up.html" style="display: none;" class="logged-out text-body mb-2 mx-5">sign Up</a>
<a href="" style="display: none;" class="logged-in text-body mb-2 mx5" id="logOut1">Log Out</a> <br>
<a href="appointments.html" class="text-body mx-5" id="booking">Book an Appointment</a>
</div>
</div>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.9.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.9.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.9.1/firebase-firestore.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.9.1/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyBISrz9sezY5UXWC4L1ytWjQGk-MjWrvW8",
authDomain: "kotikutz-ee8c7.firebaseapp.com",
databaseURL: "https://kotikutz-ee8c7.firebaseio.com",
projectId: "kotikutz-ee8c7",
storageBucket: "kotikutz-ee8c7.appspot.com",
messagingSenderId: "794467128691",
appId: "1:794467128691:web:358ad18cd5e4e077586106",
measurementId: "G-V54FS4FERX",
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
const auth = firebase.auth();
const db = firebase.firestore();
</script>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/timepicker/1.3.5/jquery.timepicker.min.js"></script>
<script src="script/ui.js"></script>
<script src="script/auth.js"></script>
<script src="script/appointments.js"></script>
</body>
</html>