-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·258 lines (230 loc) · 11.5 KB
/
Copy pathindex.php
File metadata and controls
executable file
·258 lines (230 loc) · 11.5 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
<?php
session_start();
// $con = mysqli_connect("127.0.0.1:3306","root","","Alumni") or die("Could not connect");
$con = mysqli_connect("127.0.0.1:3306","root","alumni","Alumni") or die("Could not connect");
?>
<?php
if(isset($_SESSION['user']))
echo '<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria- expanded="false">'.$_SESSION['user'].'<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="logout.php">logout</a></li>
</ul>
</li>';
else echo '<li><a href="login.php">Login</a></li> ';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!--===============================================
Template Design By WpFreeware Team.
Author URI : http://www.wpfreeware.com/
====================================================-->
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Alumni</title>
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" type="image/icon" href="img/head.png"/>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/superslides.css">
<link href="css/slick.css" rel="stylesheet">
<link rel='stylesheet prefetch' href='css/jquery.circliful.css'>
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/queryLoader.css" type="text/css" />
<link type="text/css" media="all" rel="stylesheet" href="css/jquery.tosrus.all.css" />
<link id="switcher" href="css/themes/default-theme.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="css/fontmerri.css" rel='stylesheet' type='text/css'>
<link href="css/fontvarela.css" rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js for 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/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- SCROLL TOP BUTTON -->
<a class="scrollToTop" href="#"></a>
<!-- END SCROLL TOP BUTTON -->
<!--=========== BEGIN HEADER SECTION ================-->
<header id="header">
<!-- BEGIN MENU -->
<div class="menu_area">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container">
<div class="navbar-header">
<!-- FOR MOBILE VIEW COLLAPSED BUTTON -->
<a class="navbar-brandimg" href="index.php"><img src="img/rguktlogo.png" alt="logo"></a>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- LOGO -->
<!-- TEXT BASED LOGO -->
<a class="navbar-brand" href="index.php">RGUKT<span> Alumni</span></a>
<!-- IMG BASED LOGO -->
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul id="top-menu" class="nav navbar-nav navbar-right main-nav">
<li class="active"><a href="index.php">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Connect<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="Alumni.php">Alumni</a></li>
<li><a href="Faculty.php">Faculty</a></li>
</ul>
</li>
<li><a href="blog.php">Blog</a></li>
<li><a href="opportunities.php">Opportunities</a></li>
<li><a href="events.php">Events</a></li>
<li><a href="gallery.php">Gallery</a></li>
<li><a href="contact.php">Contact us</a></li>
<!-- <li><a href="login.php">Login</a></li> -->
<?php
if(isset($_SESSION['user']))
echo '<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria- expanded="false">'.$_SESSION['user'].'<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="logout.php">logout</a></li>
</ul>
</li>';
else echo '<li><a href="login.php">Login</a></li> ';
?>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
</div>
<!-- END MENU -->
</header>
<!--=========== END HEADER SECTION ================-->
<!--=========== BEGIN SLIDER SECTION ================-->
<section id="slider">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="slider_area">
<!-- Start super slider -->
<div id="slides">
<ul class="slides-container">
<li>
<img src="img/slider/1.jpg" alt="img">
<div class="slider_caption">
<h2>Inspiration, Innovation and Discovery</h2>
<p>Any successful career starts with good education. Together with us you will have deeper knowledge that will be especially useful for you when climbing the career ladder.</p>
</div>
</li>
<!-- Start single slider-->
<li>
<img src="img/slider/3.jpg" alt="img">
<div class="slider_caption slider_right_caption">
<h2>Once an IIITian, Always an IIITian</h2>
<p>It is the alumni network for connecting alumni, students & faculty of IIIT,Basar. It’s a place to deepen your bonds with your community & connect with them in a meaningful way.</p>
</div>
</li>
<!-- Start single slider-->
<li>
<img src="img/slider/2.jpg" alt="img">
<div class="slider_caption">
<h2>The Foundation of Future</h2>
<p>Build your future with us! The educational programs of our University will give you necessary skills, training, and knowledge to make everything you learned here work for you in the future.</p>
</div>
</li>
<li>
<img src="img/slider/4.jpg" alt="img">
<div class="slider_caption">
<h2>Better Education Environment</h2>
<p>Any successful career starts with good education.</p>
</div>
</li>
</ul>
<nav class="slides-navigation">
<a href="#" class="next"></a>
<a href="#" class="prev"></a>
</nav>
</div>
</div>
</div>
</div>
</section>
<!--=========== END SLIDER SECTION ================-->
<!--=========== BEGIN FOOTER SECTION ================-->
<footer id="footer">
<!-- Start footer top area -->
<div class="footer_top">
<div class="container">
<div class="row">
<div class="col-ld-3 col-md-3 col-sm-3">
<div class="single_footer_widget">
<h3>About Us</h3>
<p>The primary objective of establishing RGU-IIIT was to provide high quality educational opportunities for the aimed rural youth of Telangana. The initial goal was that at least the top 1 % of the rural graduates would be given the opportunity to study at RGU-IIIT. Thus RGUKT, as a green field university, represents a unique experiment in the educational area.</p>
</div>
</div>
<div class="col-ld-3 col-md-3 col-sm-3">
<div class="single_footer_widget">
<h3>Others sites</h3>
<ul class="footer_widget_nav">
<li><a href="https://www.rgukt.ac.in" target="_blank">RGUKT Basar</a></li>
<li><a href="https://hub.rgukt.ac.in/" target="_blank">Hub</a></li>
</ul>
</div>
</div>
<div class="col-ld-3 col-md-3 col-sm-3">
<div class="single_footer_widget">
<h3>Social Links</h3>
<ul class="footer_social">
<li><a data-toggle="tooltip" data-placement="top" title="Facebook" class="soc_tooltip" href="#"><i class="fa fa-facebook"></i></a></li>
<li><a data-toggle="tooltip" data-placement="top" title="Twitter" class="soc_tooltip" href="#"><i class="fa fa-twitter"></i></a></li>
<li><a data-toggle="tooltip" data-placement="top" title="Google+" class="soc_tooltip" href="#"><i class="fa fa-google-plus"></i></a></li>
<li><a data-toggle="tooltip" data-placement="top" title="Linkedin" class="soc_tooltip" href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a data-toggle="tooltip" data-placement="top" title="Youtube" class="soc_tooltip" href="#"><i class="fa fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End footer top area -->
<!-- Start footer bottom area -->
<div class="footer_bottom">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="footer_bootomLeft">
<p> Copyright © All Rights Reserved</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="footer_bootomRight">
<p>Designed by Alumni-Team</a></p>
</div>
</div>
</div>
</div>
</div>
<!-- End footer bottom area -->
</footer>
<!--=========== END FOOTER SECTION ================-->
<!-- Javascript Files
================================================== -->
<script src="js/jquery.min.js"></script>
<script src="js/jqmin.js"></script>
<script src="js/queryloader2.min.js" type="text/javascript"></script>
<script src="js/wow.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/slick.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/jquery.animate-enhanced.min.js"></script>
<script src="js/jquery.superslides.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jqcirc.js"></script>
<script type="text/javascript" language="javascript" src="js/jquery.tosrus.min.all.js"></script>
<script src="js/custom.js"></script>
</body>
</html>