-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooking.php
345 lines (312 loc) · 11.3 KB
/
booking.php
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
335
336
337
338
339
340
341
342
343
344
345
<?php
require_once('config.php');
if(isset($_POST['submit'])){
$tutorname = $_POST['tutorname'];
$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$country = $_POST['country'];
$state = $_POST['state'];
$birthday = $_POST['birthday'];
$school_name = $_POST['school'];
$phone = $_POST['phone'];
$email = $_POST['email'];
$parent_first_name= $_POST['pfn'];
$parent_last_name = $_POST['pln'];
$parent_phone = $_POST['pphone'];
$parent_email = $_POST['pemail'];
$valid = 1;
// checking email address from database
$stm1 = $pdo->prepare("SELECT email FROM booking WHERE email=?");
$stm1->execute(array($email));
$emailCount = $stm1->rowCount();
if(empty($firstname)){
$error = "First Name can't be Empty!";
$valid = 0;
}
else if(empty($lastname)){
$error = "Last Name can't be Empty!";
$valid = 0;
}
else if(empty($phone)){
$error = "Phone can't be Empty!";
$valid = 0;
}
else if(empty($birthday)){
$error = "Birthday can't be Empty!";
$valid = 0;
}
else if(empty($school_name)){
$error = "School can't be Empty!";
$valid = 0;
}
else if(empty($email)){
$error = "Email can't be Empty!";
$valid = 0;
}else if($emailCount == 1){
$error = "Your Email Already Used! Please try another email";
$valid = 0;
}
else if(empty($parent_first_name)){
$error = "Parent FirstName can't be Empty!";
$valid = 0;
}
else if(empty($parent_last_name)){
$error = "Parent LastName can't be Empty!";
$valid = 0;
}
else if(empty($parent_phone)){
$error = "Parent's Phone can't be Empty!";
$valid = 0;
}
else if(empty($parent_email)){
$error = "Parent's Email can't be Empty!";
$valid = 0;
}
if($valid == 1){
$password = SHA1($password);
$stm = $pdo->prepare("INSERT INTO booking(tutor_name,first_name,last_name,country,state,birthday,school_name,phone,email,parent_first_name,parent_last_name,parent_phone_number,parent_email) VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?)");
$stm->execute(array($tutorname,$firstname,$lastname,$country,$state,$birthday,$school_name,$phone,$email,$parent_first_name,$parent_last_name,$parent_phone,$parent_email));
$success = "Class Scheduled! We will contact you through mail Soon!";
/*$email_txt = "Hello, your Registration Successfully!"."\r\n";
$email_txt .= "Your verification Code is: ";
$email_txt .= $tmp_email_code;
mail($email,"Verify your email",$email_txt);
header("location:verifyEmail.php?account_id=$account_id");*/
}
}
?>
<!DOCTYPE html>
<html lang="zh">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="keywords" content="your keywords">
<meta name="description" content="your description">
<meta name="author" content="author,email address">
<meta name="robots" content="index,follow">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="renderer" content="webkit"/>
<meta name="force-rendering" content="webkit"/>
<link type="text/css" rel="stylesheet" href="css/swiper.min.css" />
<link type="text/css" rel="stylesheet" href="css/animate.min.css" />
<link type="text/css" rel="stylesheet" href="css/wSelect.css" />
<link type="text/css" rel="stylesheet" href="css/app.css" />
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="css/owl.carousel.min.css" />
<link type="text/css" rel="stylesheet" href="css/owl.theme.default.min.css" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900&display=swap" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/responsive.css" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/swiper.min.js"></script>
<script type="text/javascript" src="js/wow.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//geodata.solutions/includes/countrystate.js"></script>
<title>Register - HiLink</title>
<link rel="icon" href="i/Hi3.jpg" type="image/x-icon" />
</head>
<body>
<!--<div class="header_tip_box">
<div class="warpin">
<div class="header_sele_box">
<select class="header_lang" tabindex="1">
<option value="">Select a Country</option>
<option value="EN" data-icon="i/gq.png">English</option>
</select>
</div>
</div>
</div>-->
<!-- -->
<div class="index_search_box">
<div class="warpin clear">
<div class="container">
<div class="row">
<div class="col-lg-2">
<div class="logo">
<a href="index.html"><img src="i/logo.png" alt=""> </a>
<a href="javascript:void(0)" class="nav-icon openbtn" onclick="openNav()">☰</a>
</div>
</div>
<div class="col-lg-7">
<div class="menu_box">
<img src="i/menu.png" alt=""> Table of Contents
</div>
<div class="search_box">
<input type="text" name="" placeholder="Enter keyword">
</div>
<!-- -->
<div class="menu_nav_box canvas-menu">
<div class="index_navi_cont">
<div class="warpin clear">
<div class="content_box clear">
<a href="javascript:void(0)" class="nav-icon closebtn" onclick="closeNav()">×</a>
<div class="nav_last">
<a href="tutor.html">HiClass</a>
</div>
<div class="nav_last">
<a href="WhyHiClass.html">Why HiClass</a>
</div>
<div class="nav_last">
<a href="programIntroduction.html">HiCamp</a>
<!--<div class="nav_bit_last">
<div class="list">
<a href="summerProgram.html">program</a>
</div>
<div class="list">
<a href="summerProgram.html">program</a>
</div>
<div class="list">
<a href="summerProgram.html">program</a>
</div>
</div>-->
</div>
<!-- <div class="nav_last">-->
<!-- <a href="dowloadArea.html">Resources</a>-->
<!-- </div>-->
<div class="nav_last">
<a href="pricing.html">Pricing</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- -->
<div class="col-lg-3">
<div class="search_sele">
<a class="sele_btn_box" href="/redirect.php"><img src="i/usericon.png">User Center</a>
</div>
<div class="language-area">
<a class="header_langage" href="https://hilinkeducation.cn/booking.php">
<img src="i/cn.png">简体中文
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="regis_content_box">
<div class="warpin">
<div class="tis_tle">
Book Your Class Now
</div>
<div class="content_box">
<form class="cont" actions="" method="POST" id="form1">
<?php if(isset($error)): ?>
<div class="alert alert-danger">
<?php echo $error; ?>
</div>
<?php endif; ?>
<?php if(isset($success)): ?>
<div class="alert alert-success">
<?php echo $success; ?>
</div>
<?php endif; ?>
<div class="regis_last clear">
<div class="list">
<div><p>Tutor Name</p></div>
<div>
<select name="tutorname">
<option value="Steven">Steven Rigg</option>
<option value="Dana">Dana Reckard</option>
</select>
</div>
</div>
<br>
<div class="list">
<div><p>First name</p></div>
<div><input type="text" name="firstname" placeholder="First Name"> </div>
<div><p>Last name</p></div>
<div><input type="text" name="lastname" placeholder="Last Name"> </div>
</div>
<div class="list">
<div><p>Select your Country</p></div>
<div>
<select name="country" class="countries order-alpha presel-byip " id="countryId">
<option value="">Select Country</option>
</select>
</div>
</div>
<div class="list">
<div><p>Select your States</p></div>
<div> <select name="state" class="states order-alpha" id="stateId">
<option value="">Select State</option>
</select>
</div>
</div>
<div class="list">
<div><p>Birthday</p></div>
<div>
<input type="date" name="birthday" placeholder="">
</div>
</div>
<div class="list">
<div><p>School Name</p></div>
<div><input type="text" name="school" value="" placeholder="School Name"> </div>
</div>
<div class="list">
<div><p>Phone Number</p></div>
<div><input type="text" name="phone" placeholder="Phone Number"> </div>
</div>
<div class="list">
<div><p>E-mail</p></div>
<div><input type="text" name="email" value="" placeholder="Email"> </div>
</div>
<div class="list">
<div><h1>Parent's Information</h1></div>
</div>
<div class="list">
<div><p>Parent's First Name</p></div>
<div><input type="text" name="pfn" placeholder="Parent's First Name"> </div>
<div><p>Parent's Last Name</p></div>
<div><input type="text" name="pln" placeholder="Parent's Last Name"> </div>
</div>
<div class="list">
<div><p>Parent's Phone Number</p></div>
<div><input type="text" name="pphone" placeholder="Parent's Phone Number"> </div>
</div>
<div class="list">
<div><p>Parent's E-mail</p></div>
<div><input type="text" name="pemail" value="" placeholder="Parent's Email"> </div>
</div>
<div class="bit_btn">
<input type="submit" name="submit" value="Book Now" class="regis_btn" />
</div>
</div>
</form>
</div>
</div>
</div>
<!-- -->
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5efb7a294a7c6258179ba250/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
<div class="footer_copy">
TEl:(317)426-6189 Mail: hiclass@hilink.llc
</div>
<div class="footer_copy">
Follow Us <a href="https://www.instagram.com/hilinkeducation/"><img class="mx-1" style="height: 15px; width: 15px; " src="i/insta_logo.png"></a><a href="https://www.facebook.com/HiLinkEducation"><img class="mx-1" style="height: 15px; width: 15px; " src="i/fb_logo.png"></a><a href="https://www.linkedin.com/company/hilink-education/"><img class="mx-1" style="height: 15px; width: 15px; " src="i/linkedin_logo.png"></a><a href="https://twitter.com/HiLinkEducation"><img class="mx-1" style="height: 15px; width: 15px; " src="i/twitter_logo.png"></a>
</div>
<div class="footer_copy">
HiLink LLC © 2020 All Rights Reserved
</div>
</body>
<script type="text/javascript" src="js/wSelect.min.js"></script>
<script type="text/javascript" src="js/dynamics.js"></script>
<script type="text/javascript" src="js/minigrid.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
<script type="text/javascript">
</script>
</html>