-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
154 lines (145 loc) · 5.4 KB
/
Copy pathheader.php
File metadata and controls
154 lines (145 loc) · 5.4 KB
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
<!DOCTYPE html>
<?php session_start();
if(isset($_SESSION['reg_id'])) {
header("Location: user/profile.php");
}?>
<html lang="en">
<head>
<title>About</title>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no"/>
<link rel="icon" href="images/favicon.ico">
<link rel="shortcut icon" href="images/favicon.ico"/>
<link href="https://use.fontawesome.com/releases/v5.0.7/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="booking/css/booking.css">
<link rel="stylesheet" href="css/camera.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.js"></script>
<script src="js/jquery-migrate-1.2.1.js"></script>
<script src="js/script.js"></script>
<script src="js/superfish.js"></script>
<script src="js/jquery.ui.totop.js"></script>
<script src="js/jquery.equalheights.js"></script>
<script src="js/jquery.mobilemenu.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/owl.carousel.js"></script>
<script src="js/camera.js"></script>
<script src="js/jquery.mobile.customized.min.js"></script>
<!--<![endif]-->
<script src="booking/js/booking.js"></script>
<script>
$(document).ready(function () {
jQuery('#camera_wrap').camera({
loader: false,
pagination: false,
minHeight: '444',
thumbnails: false,
height: '48.375%',
caption: true,
navigation: true,
fx: 'mosaic'
});
/*carousel*/
var owl = $("#owl");
owl.owlCarousel({
items: 2, //10 items above 1000px browser width
itemsDesktop: [995, 2], //5 items between 1000px and 901px
itemsDesktopSmall: [767, 2], // betweem 900px and 601px
itemsTablet: [700, 2], //2 items between 600 and 0
itemsMobile: [479, 1], // itemsMobile disabled - inherit from itemsTablet option
navigation: true,
pagination: false
});
$().UItoTop({easingType: 'easeOutQuart'});
});
function validation() {
if (document.regform.fname.value == "") {
alert("last name should not be blank..");
document.regform.fname.focus();
return false;
}
else if (document.regform.lname.value == "") {
alert("last name should not be blank..");
document.regform.lname.focus();
return false;
}
else if (document.regform.address.value == "") {
alert("It Is Compulsory...");
document.regform.address.focus();
return false;
}
else if (document.regform.city.value == "") {
alert("It Is Compulsory...");
document.regform.city.focus();
return false;
}
else if (document.regform.state.value == "") {
alert("It Is Compulsory...");
document.regform.state.focus();
return false;
}
else if (document.regform.country.value == "") {
alert("It Is Compulsory...");
document.regform.country.focus();
return false;
}
else if (document.regform.dob.value == "") {
alert("Enter Your Birthdate...");
document.regform.dob.focus();
return false;
}
else if (document.regform.gender.value == "") {
alert("Enter Your Gender Please...");
document.regform.gender.focus();
return false;
}
else if (document.regform.mobile_no.value == "") {
alert("Address should not be blank..");
document.regform.mobile_no.focus();
return false;
}
else if (document.regform.email.value == "") {
alert("Email_id is must..");
document.regform.email.focus();
return false;
}
else if (document.regform.password.value == "") {
alert("enter password..");
document.regform.password.focus();
return false;
}
else if (document.regform.sec_ques.value == "") {
alert("Please Select Any One Of The Question...");
document.regform.sec_ques.focus();
return false;
}
else if (document.regform.answer.value == "") {
alert("Please Answer The Above Question...");
document.regform.answer.focus();
return false;
}
else {
return true;
}
}
</script>
<style>
.error {
color: #FF0000;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px;
text-align: center;
border-bottom: 1px solid #ddd;
}
tr:hover {
background-color: #f5f5f5;
}
</style>
</head>