-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmainindex.php
More file actions
348 lines (287 loc) · 13.6 KB
/
Copy pathmainindex.php
File metadata and controls
348 lines (287 loc) · 13.6 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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<?php require_once 'controllers/authController.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>LiveByCode — Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Muli:300,400,700,900" rel="stylesheet">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="css/aos.css">
<link href="css/jquery.mb.YTPlayer.min.css" media="all" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/style.css">
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300">
<div class="site-wrap">
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<div class="py-2 bg-light">
<h4><span class="small mr-3" style="float: right; padding-right: 20px;"> Welcome, <span style="color: blue; "><?php echo $_SESSION['username']; ?></span></span></h4>
<br>
<a href="index.php?logout=1" style="color: red; float: right; padding-right: 83px; font-variant: small-caps;">logout</a>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-9 d-none d-lg-block">
<a href="chatbot/chatbot.html" class="small mr-3"><span class="icon-question-circle-o mr-2"></span> Have a questions?</a>
<a href="#" class="small mr-3"><span class="icon-envelope-o mr-2"></span> livebycode@googlegroups.com</a>
</div>
</div>
</div>
</div>
<header class="site-navbar py-4 js-sticky-header site-navbar-target" role="banner">
<div class="container">
<div class="d-flex align-items-center">
<div class="site-logo">
<a href="mainindex.php" class="d-block">
<img src="images/logo.png" alt="Image" class="img-fluid">
</a>
</div>
<div class="mr-auto">
<nav class="site-navigation position-relative text-right" role="navigation">
<ul class="site-menu main-menu js-clone-nav mr-auto d-none d-lg-block">
<li class="active">
<a href="index.html" class="nav-link text-left">Home</a>
</li>
<a href="about.html" class="nav-link text-left">About Us</a>
<li>
<a href="indexblog.php" class="nav-link text-left">Blog</a>
</li>
<li>
<a href="game.html" class="nav-link text-left">Game</a>
</li>
<li>
<a href="Compiler/frame.html" class="nav-link text-left">Compiler</a>
</li>
<li>
<a href="contact.html" class="nav-link text-left">Contact</a>
</li>
</ul> </ul>
</nav>
</div>
<div class="ml-auto">
<div class="social-wrap">
<a href="#"><span class="icon-facebook"></span></a>
<a href="https://chat.whatsapp.com/BR3KAAwy7DI7ZCWoVvAPl6"><span class="icon-whatsapp"></span></a>
<a href="#"><span class="icon-instagram"></span></a>
<a href="#" class="d-inline-block d-lg-none site-menu-toggle js-menu-toggle text-black"><span
class="icon-menu h3"></span></a>
</div>
</div>
</div>
</div>
</header>
<div class="hero-slide owl-carousel site-blocks-cover">
<div class="intro-section" style="background-image: url('images/hero_1.jpg');">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12 mx-auto text-center" data-aos="fade-up">
<h1>Live By Code</h1>
</div>
</div>
</div>
</div>
<div class="intro-section" style="background-image: url('images/hero_1.jpg');">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12 mx-auto text-center" data-aos="fade-up">
<h1>You Can <u>Code</u> the Future.</h1>
</div>
</div>
</div>
</div>
</div>
<div></div>
<div class="site-section">
<div class="container">
<div class="row mb-5 justify-content-center text-center">
<div class="col-lg-4 mb-5">
<h2 class="section-title-underline mb-5">
<span>OUR OBJECTIVE</span>
</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 mb-4 mb-lg-0">
<div class="feature-1 border">
<div class="icon-wrapper bg-primary">
<span class="flaticon-mortarboard text-white"></span>
</div>
<div class="feature-1-content">
<h2>Personalize Learning</h2>
<p>To encourage students to learning experience designed for each student with the programming languages.</p>
<!--<p><a href="#" class="btn btn-primary px-4 rounded-0">Learn More</a></p>-->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 mb-lg-0">
<div class="feature-1 border">
<div class="icon-wrapper bg-primary">
<span class="flaticon-school-material text-white"></span>
</div>
<div class="feature-1-content">
<h2>Valuable Questions</h2>
<p>LBC admins often ask valuable programs and problems to their students to solve. </p>
<!--<p><a href="#" class="btn btn-primary px-4 rounded-0">Learn More</a></p>-->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 mb-lg-0">
<div class="feature-1 border">
<div class="icon-wrapper bg-primary">
<span class="flaticon-library text-white"></span>
</div>
<div class="feature-1-content">
<h2>Tools for Students</h2>
<p>LBC provides tools for students such as compiler to develop and enhance their skills in programming.</p>
<!--<p><a href="#" class="btn btn-primary px-4 rounded-0">Learn More</a></p>-->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-bg style-1" style="background-image: url('images/about_1.jpg');">
<div class="container">
<div class="row">
<div class="col-lg-4">
<h2 class="section-title-underline style-2">
<span>About Our Community</span>
</h2>
</div>
<div class="col-lg-8">
<p class="lead">LBC stands for LiveByCode, it is a platform where students can enhance their programming skills and expand their knowledge and prepare better. </p>
<p>Students to solve problems in a wide range of Computer Science domains such as algorithms, data structures, as well as to practice different programming paradigms. LBC is not only for learning and developing skills but also for discussing among others who have been logged in. LBC also provides playing platform where the students can be relaxed by playing games. In addition to that, LBC provides more information about technical and also tips, tricks etc., </p>
</div>
</div>
</div>
</div>
<!-- // 05 - Block -->
<div>
<br>
</div>
<div class="section-bg style-1" style="background-image: url('images/hero_1.jpg');">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 mb-5 mb-lg-0">
<span class="icon flaticon-mortarboard"></span>
<h3>Our Philosphy</h3>
<p>We want the best outcomes for our students and meeting their needs is first in everything we do. We care for our students in a good manner. We support, guide, lead and care for them.</p>
</div>
<div class="col-lg-4 col-md-6 mb-5 mb-lg-0">
<span class="icon flaticon-school-material"></span>
<h3>LBC Principle</h3>
<p>LBC creates a culture of learning around good programming. Programming is the process of coding, testing, troubleshooting, debugging and maintaining a system.</p>
</div>
<div class="col-lg-4 col-md-6 mb-5 mb-lg-0">
<span class="icon flaticon-library"></span>
<h3>Key of Success</h3>
<p>We are proud of our students, who have acquired their programming skills in higher level from our community and have experience with programming.</p>
</div>
</div>
</div>
</div>
<div><br></div>
<div class="site-section ftco-subscribe-1" style="background-image: url('images/bg_1.jpg')">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7">
<h2>Subscribe to us!</h2>
<p>We will send technical updates, tips, tricks direct to your Inbox. </p>
</div>
<div class="col-lg-5">
<form action="" class="d-flex">
<input type="text" class="rounded form-control mr-2 py-3" placeholder="Enter your email">
<button class="btn btn-primary rounded py-3 px-4" type="submit">Send</button>
</form>
</div>
</div>
</div>
</div>
<div>
<br>
</div>
<div class="footer">
<div class="container">
<div class="row">
<div class="col-lg-3">
<p class="mb-4"><img src="images/logo.png" alt="Image" class="img-fluid"></p>
<p><b> THINK. IMPLEMENT. QUIT. REPEAT.</b></p>
</div>
<div class="col-lg-3">
<h3 class="footer-heading"><span>Our Department</span></h3>
<ul class="list-unstyled">
<li><a href="http://www.saranathan.ac.in/dept.php?tgt=itabout&dept=IT">Information Technology</a></li>
</ul>
<h3 class="footer-heading"><span>Our College</span></h3>
<ul class="list-unstyled">
<li><a href="http://www.saranathan.ac.in">Saranathan College of Engineering</a></li>
</ul>
</div>
<div class="col-lg-3">
<h3 class="footer-heading"><span>Compiler Language support</span></h3>
<ul class="list-unstyled">
<li><a href="#">Bash (4.0 | 4.4)</a></li>
<li><a href="#">Basic (fbc 1.05.0)</a></li>
<li><a href="#">C</a></li>
<li><a href="#">C++</a></li>
<li><a href="#">Clojure (1.8.0)</a></li>
<li><a href="lang.html">Read More</a></li>
</ul>
</div>
<div class="col-lg-3">
<h3 class="footer-heading"><span>Contact us at</span></h3>
<ul class="list-unstyled">
<li><a href="#">Gmail</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Whatsapp</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="copyright">
<p>
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved </i> by <a href="index.html" target="_blank" >Live By Code</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- .site-wrap -->
<!-- loader -->
<div id="loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#51be78"/></svg></div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script src="js/bootstrap-datepicker.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/aos.js"></script>
<script src="js/jquery.fancybox.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/jquery.mb.YTPlayer.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>