-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauto_checkin.php
204 lines (113 loc) · 4.83 KB
/
auto_checkin.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>The Viral Times</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="font-awesome-4.6.3/css/font-awesome.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/auto.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<button type="button" class="navbar-toggle"
data-toggle="collapse"
data-target=".navbar-collapse">
<span class="sr-only">Toggle variation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active" ><a href=""><i class="fa fa-home" aria-hidden="true"></i> Home </a></li>
<li class=""><a href="events.html"> Events</a></li>
<li class="" ><a href="team.html"><i class="fa fa-users" aria-hidden="true"></i> Team</a></li>
</ul>
</div>
</div>
</nav>
<br><br>
<!-- Full Width Image Header -->
<header class="header-image" style="background-image:"auto.jpg" ; background-size: cover; background-position: center; height: 200px">
<div class="headline">
<div class="container">
<h2>Auto Expo</h2>
<br>
<i>
<p class="paragraph box-shadow">
<strong>"</strong>
The Auto Expo is a biennial automotive show held in New Delhi, India. It is Asia's largest and the world's second-largest motor show. It is organized at India Expo Mart, Greater Noida. It is organized jointly by the Automotive Component Manufacturers Association (ACMA), Confederation of Indian Industry (CII) and Society of Indian Automobile Manufacturers (SIAM).
<strong>"</strong>
</p>
</i>
</div>
</div>
</header>
<br>
<hr>
<br>
<div class="container">
<div class="row">
<div class="col-md-8">
<strong><p> Select the graph you want to view from the adjacent dropdown menu.</p></strong>
</div>
<div class="col-md-4">
<div class="dropdown ">
<button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
Choose a chart
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<li class="dropdown-header">For each page</li>
<li ><a href="auto.php">Fan count</a></li>
<li class="active"><a href="auto_checkin.php">Checkins</a></li>
<li><a href="auto_peopletalking.php">People Talking</a></li>
<li role="separator" class="divider"></li>
<li class="dropdown-header">Cumulative (Year wise)</li>
<li><a href="auto_posts.php">Number of posts</a></li>
<li><a href="auto_likes.php">Number of likes on posts</a></li>
<li><a href="auto_comments.php">Number of Comments on posts</a></li>
</ul>
</div>
</div>
</div>
</div>
<br><br>
<div class="container" pull-left>
<?php include("php/auto_checkin.php"); ?>
</div>
<hr>
<footer>
<div class="container">
<div class="navbar-text pull-left">
<p><i class="fa fa-copyright" aria-hidden="true"></i> IGDTUW 2016 </p>
</div>
<div class="navbar-text pull-right">
<a href="#"><i class="fa fa-facebook " aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-instagram " aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-google-plus-official" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
</footer>
<!-- /.container -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>