-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodigo.php
171 lines (122 loc) · 5.45 KB
/
codigo.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
<!DOCTYPE html>
<html>
<head>
<title>Effulgence</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/animate.min.css">
<script type='text/javascript' src='js/jquery-1.11.1.min.js'></script><!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<link rel="stylesheet" href="css/stylec.css">
<script type="text/javascript">// <![CDATA[
$(window).load(function() { $("#spinner").fadeOut("slow"); })
// ]]></script>
<!--===============================scrolling-->
<link rel="stylesheet" href="css/jquery.mCustomScrollbar.css" />
<script src="js/jquery.mCustomScrollbar.concat.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/component.css" />
</head>
<body>
<div id="spinner">
<center>
<img class="load" src="img/loading.gif"/>
</center>
</div>
<div id="particles-js"></div>
<!---------------------------------------------------------------------------------------->
<nav class="navbar navbar-inverse navbar-fixed-top transparent">
<div class="container-fluid">
<!-- 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="#nav1" 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>
<a class="navbar-brand" id="hide1"href="#"><img src="img/neon1.png" height="45" width="45" style="margin-right:px; margin-left:px; margin-top:-8px;" /></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="nav1" >
<ul class="nav navbar-nav abc">
<li class="active"><a href="index.php">Home <span class="sr-only">(current)</span></a></li>
<li><a href="aboutus.php">About us</a></li>
<li><a href="pronites.php">Pronites</a></li>
<li><a href="event.php">Events</a></li>
<li><a href="registers.php">Signup</a></li>
<li id="hide2"><a href="#"> <img src="img/neon1.png" style="margin-top:-15px;" height="60" width="60" /></a></li>
<li><a href="exhibition.php">Exhibition</a></li>
<li><a href="workshop.php">Workshops</a></li>
<li><a href="sponsor.php">Sponsors</a></li>
<li><a href="contact.php">Contact</a></li>
<li><?php session_start();
if(!(isset($_SESSION['u_id']))){
echo '<a href="log.php">Login</a>';
}
else
{
$u_id = $_SESSION['u_id'];
include_once 'dbConnection.php';
$query=mysqli_query($con,"SELECT name FROM users WHERE u_id='$u_id'");
while($row = mysqli_fetch_array($query)) {
$name = $row['0'];
}
echo '<a href="logout.php">logout</a><span class="pull-right sny" >Hello, <a href="user_profile.php">'.$name.'</a></span>';
}?></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="row top">
<div class="col-md-12 col-lg-12 col-sm-12 col-xs-12 bich1">
<center><a href="index.php" id="h1">
<h1 class="" >EFFULGENCE'17</h1>
</a></center>
</div>
</div>
<!--==============================================================================-->
<div class="row">
<div class="col-md-2 col-lg-2 "></div>
<div class="col-md-8 col-lg-8 col-sm-12 col-xs-12 " style="">
<div class="area1">
<center> <h3>Codigo</h3> </center>
</div>
<!--scoll area start-->
<div class="area mCustomScrollbar" data-mcs-theme="light" data-mcs-axis="y">
<!--========== Cs/it/mca
ns. .=============================================================================================-->
<h2>INTRODUCTION:</h2>
<p>Codigo is the flagship online coding contest of Effulgence.It's an annual coding contest hosted on the platform <a style="color:skyblue;" href="http://codechef.com/" target="_blank">CodeChef</a> in the month of September by KNIT Sultanpur.</br>
</br>
Who can participate?</br>
Just as the Codechef says, "Anybody with a knack for programming". </br></br>
Date : 08-10-2017 </br>
Time : 09:00 P.M. – 12:00 A.M</br></br>
No sign up, no registration, all you need is a Codechef user account.
So brace yourself. Because 'The Game is on!'</br>
For any details, contact-</br>
Atul Gupta (Final Year)</br>
Shivam Sharma(9519560707)</br>
Ankit Yadav (7783922218)</p>
<!--=========================================================================================================-->
<center><a href="soft_corner.php"><button class="sunny">Back</button></a>
</div><hr>
<!--scroll area end-->
</div>
</div>
<!-- ===============================================================================-->
<script>
$(".button-fill").hover(function () {
$(this).children(".button-inside").addClass('full');
}, function() {
$(this).children(".button-inside").removeClass('full');
});
</script>
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
<script type="text/javascript" src="js/time.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>