-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.php
More file actions
259 lines (236 loc) · 8.34 KB
/
index2.php
File metadata and controls
259 lines (236 loc) · 8.34 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
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
<?php
session_start();
if(isset($_SESSION['login_user']))
{
}
else
{
?>
<script>
alert('You have not logged in');
window.location='index1.php';
</script>
<?php
}
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Courtside</title>
<!---css--->
<link href="css/bootstrap.css" rel='stylesheet' type='text/css' />
<link href="css/style.css" rel='stylesheet' type='text/css' />
<!---css--->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<!---js--->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<!---js--->
<!---fonts-->
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=PT+Sans:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Righteous' rel='stylesheet' type='text/css'>
<!---fonts-->
<script src="js/responsiveslides.min.js"></script>
<script>
$(function () {
$("#slider").responsiveSlides({
auto:true,
nav: false,
speed: 500,
namespace: "callbacks",
pager:true,
});
});
</script>
<link href="css/owl.carousel.css" rel="stylesheet">
<script src="js/owl.carousel.js"></script>
<script>
$(document).ready(function() {
$("#owl-demo").owlCarousel({
items : 1,
lazyLoad : true,
autoPlay : true,
navigation : false,
navigationText : false,
pagination : true,
});
});
</script>
</head>
<body>
<!---header--->
<div class="header-section">
<div class="container">
<div class="head-top">
<div class="social-icon">
<a href="#"><i class="icon"></i></a>
<a href="#"><i class="icon1"></i></a>
<a href="#"><i class="icon2"></i></a>
<a href="#"><i class="icon3"></i></a>
<a href="#"><i class="icon4"></i></a>
</div>
<div class="email">
<ul>
<li><i class="glyphicon glyphicon-envelope" aria-hidden="true"></i>Email: <a href="mailto:info@example.com">info@example.com</a> </li>
<li><i class="glyphicon glyphicon-log-in" aria-hidden="true"></i><a href="logout.php" >Logout</a></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
<nav class="navbar navbar-default">
<!---Brand and toggle get grouped for better mobile display--->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand">
<h1><a href="#"><span>Court</span>Side</a></h1>
</a>
</div>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="index2.php">Home <span class="sr-only">(current)</span></a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Gallery <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="2columnsgallery.html">2 Columns Gallery</a></li>
<li><a href="3columnsgallery.html">3 Columns Gallery</a></li>
<li><a href="4columnsgallery.html">4 Columns Gallery</a></li>
</ul>
</li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="phone">
<span><i class="glyphicon glyphicon-phone" aria-hidden="true"></i>1-999-4563-555</span>
</div>
<div class="clearfix"></div>
</div>
</nav>
</div>
</div>
<!---header--->
<!---banner--->
<div class="slider">
<div class="callbacks_container">
<ul class="rslides" id="slider">
<div class="slid banner1">
</div>
<div class="slid banner2">
</div>
<div class="slid banner3">
</div>
<div class="slid banner4">
</div>
</ul>
</div>
</div>
<!---banner--->
<!-- missing -->
<div class="friend-agent">
<div class="container">
<div class="friend-grids">
<div class="col-md-4 friend-grid">
<a href="mainbooking.php"><img src="images/logos/p.png"></a>
<h4>Book a court</h4>
<p>We provide you the facility to book courts of various sport online .</p>
</div>
<div class="col-md-4 friend-grid">
<a href="tour.php"> <img src="images/logos/p1.png"></a>
<h4>Tournaments</h4>
<p>Helps you oraganize or take part in tournaments.</p>
</div>
<div class="col-md-4 friend-grid">
<a href="gears.php"> <img src="images/logos/p2.png"></a>
<h4>Find gears</h4>
<p>You can buy the sports gears here.</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!---testimonials--->
<div class="testimonials">
<div class="container">
<h3>testimonial</h3>
<span></span>
<div id="owl-demo" class="owl-carousel">
<div class="item">
<div class="col-md-2 testmonial-img">
<img src="images/t1.png" class="img-responsive" alt=""/>
</div>
<div class="col-md-10 testmonial-text">
<p>It is a wonderful site that helps you book courts to play..buy gadgets..you should try it...</p><h4 style="float:left">Karthik</h4>
</div>
<div class="clearfix"> </div>
</div>
<div class="item">
<div class="col-md-2 testmonial-img">
<img src="images/t2.png" class="img-responsive" alt=""/>
</div>
<div class="col-md-10 testmonial-text">
<p>This site makes my wrok so easy because me and my friends play often and its really helpful to have this site to book courts and also helps us take part in tournaments.</p>
<h4 style="float:left">Dheeraj</h4>
</div>
<div class="clearfix"> </div>
</div>
<div class="item">
<div class="col-md-2 testmonial-img">
<img src="images/t3.png" class="img-responsive" alt=""/>
</div>
<div class="col-md-10 testmonial-text">
<p>The site is really good its for all the sports lads out there...do try it.</p>
<h4 style="float:left">Vicky </h4>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<!---testmonials--->
</div>
<!---footer--->
<div class="footer-section">
<div class="footer-grids">
<div class="col-md-3 footer-grid">
<h4>About CourtSide</h4>
<p>This site was developed using html,jQuery,css,php.This site has been created to for booking of courts of any sport to organize or take part in any tournament and also helps you buy sports gears.</p>
</div>
<div class="col-md-3 footer-grid">
<img src="images/Picture-2821.png" class="img-responsive"height="300" width="300" alt=""/>
</div>
<div class="col-md-3 footer-grid">
<h4>Get In Touch</h4>
<p>8901 Marmora Road</p>
<p>Glasgow, DO4 89GR.</p>
<p>Freephone : +1 234 567 890</p>
<p>Telephone : +1 234 567 890</p>
<p>FAX : + 1 234 567 890</p>
<p>E-mail : <a href="mailto:example@mail.com"> example@mail.com</a></p>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<!---footer--->
<!--copy-->
<div class="copy-section">
<div class="container">
<p>© 2016 Courtside. All rights reserved | Design by <a href="http://w3layouts.com">vignesh</a></p>
</div>
</div>
<!--copy-->
<!-- login -->
<form method="post" action="logout.php">
</form>
<!-- //login -->
</body>
</html>