-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
1537 lines (1314 loc) · 66.2 KB
/
index.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
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
ini_set("session.use_only_cookies",true);
@session_start();
if(!isset($_SESSION['generated']) || @$_SESSION['generated']<(time()-300000)){
session_regenerate_id(true);
$_SESSION['generated']=time();
}
require_once 'frontend.php';
require_once 'user.php';
require_once 'bugs.php';
require_once 'cv.php';
require_once 'articles.php';
require_once 'universitys.php';
require_once 'companys.php';
require_once 'mm_messages/messages.php';
require_once 'avatar.php';
require_once 'password_change.php';
require_once 'forgotpassword.php';
require_once 'user_login.php';
if(@$_GET['go']=='login'){
require_once 'user_login.php';
}
if(@$_GET['go']=='logout'){
require_once 'user_login.php';
$user= new user_login();
$user->logout();
}
if(@$_SESSION['rank']=='admin'){
header("Location:admin.php");
}
$brojac=0;
$kompanija=0;
$student1=0;
if(@$_SESSION['loged']=='true' && @$_SESSION['ip']!=$_SERVER['REMOTE_ADDR'])
header("Location:index.php?go=logout");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="favicon.ico" rel="shortcut icon">
<title>Lykeion - A place where students, companies and universities can directly reach each other</title>
<link type="text/css" rel="stylesheet" href="css/styles.css">
<link type="text/css" rel="stylesheet" href="css/toastr.css">
<script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.2.custom.min.js"></script>
<script type="text/javascript" src="js/login.js"></script>
<script type="text/javascript" src="js/toastr.js"></script>
<link href="mm_messages/mm_messages_style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.validate.js"></script>
<link href="calendar.css" type="text/css" rel="stylesheet" />
<script src="js/calendar.js" type="text/javascript"></script>
<script type='text/javascript' src='jquery.autocomplete.js'></script>
<link rel="stylesheet" type="text/css" href="jquery.autocomplete.css" />
<script type="text/javascript" src="js/validacija.js"></script>
<script src="js/elements.js" type="text/javascript"></script>
<script type="text/javascript">
</script>
<style type="text/css">
<!--
body {
margin-top: 0px;
margin-bottom: 0px;
}
-->
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26753711-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="container">
<div id="header">
<h1><a href="index.php"><img src="images/logo.png" alt="Lykeion"/></a></h1>
<div id="statistics">
<?php include ("front_stats.php");?>
</div>
<?php
if(@$_SESSION['loged']==true){
?>
<form id="search" action="index.php" method="post">
<input type="text" name="article_topic" id="article_topic" class="textBox" placeholder="Type your search here..."/>
</form>
<?php
}
?>
<div id="nesto"></div>
<?php
$account=0;
if(@$_GET['to']=='university'){
if(@$_SESSION['loged']==true)
{
$brojac++;
}
else
{
?>
<div id="login-closed">
<a href="#" class="login-btn"><img src="images/login-btn.png"/></a>
</div>
<div id="login-box">
<div id="login-opened"><a href="#" class="login-btn"><img src="images/login-btn-opened.png"/></a></div>
<div id="login-box-content">
<form id="login-form" action="index.php" method="post">
<label>Username:</label>
<input type="text" name="username" />
<label>Password:</label>
<a href="index.php?do=forgotpassword">Forgot your password?</a>
<input type="password" name="password" />
<div id="login-form-bottom">
<div class="keepmeloggedin"><input type="checkbox" name="keeploggedin" value="KeepLoggedIn"/> Keep me logged in</div>
<input class="btn" type="submit" value="" name="user_login" >
</div>
</form>
</div>
</div>
<?php
$f=new frontend();
$f->menu("university");
?>
<div id="featured">
<ul>
<li class="ss1"><img src="images/featured-image-1.png" alt="Featured image 1" width="100%"/></li>
</ul>
</div>
<div id="shadow-up"></div>
<div id="content">
<div id="info-container">
<div class="col">
<a href="index.php?to=student#content"><img src="images/icon-students.png" alt="Students" />
<h2>STUDENTS</h2></a>
<p>Interships and Jobs</p>
</div>
<div class="col">
<a href="index.php?to=company#content"><img src="images/icon-companies.png" alt="Companies" />
<h2>COMPANIES</h2></a>
<p>Seek you future employees</p>
</div>
<div class="col active">
<a href="index.php?to=university#content"><img src="images/icon-universities.png" alt="Universities" />
<h2>UNIVERSITIES</h2></a>
<p>Research and Study Programs possibilities</p>
</div>
<div class="clear"></div>
<div id="left-section">
<p>Lykeion is a portal which connects students of technical fields, searching for internships and study programs, with universities who are looking to promote their programs amongst students and young engineers.</p>
<p>By entering in cooperation with EESTEC on the Lykeion project, your university will be able to:</p>
<ul>
<li>announce Bachelor, Master and PhD study programs to students;</li>
<li>announce your university’s research possibilities to student;</li>
<li>announce news and promotional activities of companies on Lykeion;</li>
<li>access Lykeion’s CV database of students of technical sciences;</li>
<li> establish contact with the most perspective students of technical sciences;</li>
</ul>
<p>Students who register on Lykeion are not just ordinary students; most are/were active in international students organizations, so they possess huge motivation for pursuing international careers, are conscious of internationality, have experiences in teamwork, project management and acquire a wide knowledge of soft skills.
</p>
<form id="joinnow" action="index.php?cat=un&do=register" method="post">
<a href="index.php?cat=un&do=register"><input class="btn" type="image" src="images/joinnow-btn.png"/></a>
</form>
</div>
</div>
</div>
<div id="shadow-down"></div>
<div id="testimonials">
<p>Lykeion is connecting highly qualified and motivated students, companies and universities across the world inside a common platform, allowing them to advertise themselves, search the database for published information and as a result, establishing a new communication channel between all three. </p>
<div class="author"><a href="index.php?do=more">Read more</a></div>
</div>
</div>
<?php
}
}
if(@$_GET['to']=='company'){
if(@$_SESSION['loged']==true)
{
$kompanija++;
}
else
{
?>
<div id="login-closed">
<a href="#" class="login-btn"><img src="images/login-btn.png"/></a>
</div>
<div id="login-box">
<div id="login-opened"><a href="#" class="login-btn"><img src="images/login-btn-opened.png"/></a></div>
<div id="login-box-content">
<form id="login-form" action="index.php" method="post">
<label>Username:</label>
<input type="text" name="username" />
<label>Password:</label>
<a href="index.php?do=forgotpassword">Forgot your password?</a>
<input type="password" name="password" />
<div id="login-form-bottom">
<div class="keepmeloggedin"><input type="checkbox" name="keeploggedin" value="KeepLoggedIn"/> Keep me logged in</div>
<input class="btn" type="submit" value="" name="user_login" >
</div>
</form>
</div>
</div>
<?php
$f=new frontend();
$f->menu("company");
?>
<div id="featured">
<ul>
<li class="ss1"><img src="images/featured-image-1.png" alt="Featured image 1" width="100%"/></li>
</ul>
</div>
<div id="shadow-up"></div>
<div id="content">
<div id="info-container">
<div class="col">
<a href="index.php?to=student#content"><img src="images/icon-students.png" alt="Students" />
<h2>STUDENTS</h2></a>
<p>Interships and Jobs</p>
</div>
<div class="col active">
<a href="index.php?to=company#content"><img src="images/icon-companies.png" alt="Companies" />
<h2>COMPANIES</h2></a>
<p>Seek you future employees</p>
</div>
<div class="col">
<a href="index.php?to=university#content"><img src="images/icon-universities.png" alt="Universities" />
<h2>UNIVERSITIES</h2></a>
<p>Research and Study Programs possibilities</p>
</div>
<div class="clear"></div>
<div id="left-section">
<p>Lykeion is a portal which connects students of technical fields, searching for internships and study programs, with companies seeking new employees amongst young engineers.
By entering in cooperation with EESTEC on the Lykeion project, your university will be able to:</p>
<ul>
<li>announce internships and jobs offers to students;</li>
<li>announce news and promotional activities of the company to the students;</li>
<li>access to the Lykeion CV database of students of technical sciences from the whole Europe;</li>
<li>establish a direct communication channel with the most perspective students of technical sciences and soft skills;</li>
</ul>
<p>Students who register on Lykeion are not just ordinary students; most are/were active in international students organizations, so they possess huge motivation for pursuing international careers, are conscious of internationality, have experiences in teamwork, project management and acquire a wide knowledge of soft skills.
</p>
<form id="joinnow" action="index.php?cat=cm&do=register" method="post">
<a href="index.php?cat=cm&do=register"><input class="btn" type="image" src="images/joinnow-btn.png"/></a>
</form>
</div>
</div>
</div>
<div id="shadow-down"></div>
<div id="testimonials">
<p>Lykeion is connecting highly qualified and motivated students, companies and universities across the world inside a common platform, allowing them to advertise themselves, search the database for published information and as a result, establishing a new communication channel between all three. </p>
<div class="author"><a href="index.php?do=more">Read more</a></div>
</div>
</div>
<?php
}
}
else if(@$_GET['to']=='student'){
if(@$_SESSION['loged']==true)
{
$student1++;
}
else
{
?>
<div id="login-closed">
<a href="#" class="login-btn"><img src="images/login-btn.png"/></a>
</div>
<div id="login-box">
<div id="login-opened"><a href="#" class="login-btn"><img src="images/login-btn-opened.png"/></a></div>
<div id="login-box-content">
<form id="login-form" action="index.php" method="post">
<label>Username:</label>
<input type="text" name="username" />
<label>Password:</label>
<a href="index.php?do=forgotpassword">Forgot your password?</a>
<input type="password" name="password" />
<div id="login-form-bottom">
<div class="keepmeloggedin"><input type="checkbox" name="keeploggedin" value="KeepLoggedIn"/> Keep me logged in</div>
<input class="btn" type="submit" value="" name="user_login" >
</div>
</form>
</div>
</div>
<?php
$f=new frontend();
$f->menu("student");
?>
<div id="featured">
<ul>
<li class="ss1"><img src="images/featured-image-1.png" alt="Featured image 1" width="100%"/></li>
</ul>
<form id="signup" action="index.php?cat=st&do=register" method="post">
<a href="index.php?cat=st&do=register"><input class="btn" type="image" src="images/signup-btn.png"/></a>
</form>
</div>
<div id="shadow-up"></div>
<div id="content">
<div id="info-container">
<div class="col active">
<a href="index.php?to=student#content"><img src="images/icon-students.png" alt="Students" />
<h2>STUDENTS</h2></a>
<p>interships and jobs</p>
</div>
<div class="col">
<a href="index.php?to=company#content"><img src="images/icon-companies.png" alt="Companies" />
<h2>COMPANIES</h2></a>
<p>seek you future employees</p>
</div>
<div class="col noMargin">
<a href="index.php?to=university#content"><img src="images/icon-universities.png" alt="Universities" />
<h2>UNIVERSITIES</h2></a>
<p>research possibilities</p>
</div>
<div class="clear"></div>
<div id="left-section">
<h4>Join Lykeion!</h4>
<h5>Why</h5>
<ul>
<li> Enter and update your CV to be viewed by companies and universities from all over the world;</li>
<li> Apply for internships and jobs in various companies;</li>
<li> Apply for Bachelor, Master and PhD studies on technical universities worldwide;</li>
<li> Establish direct contact with most the recognizable and perspective universities, companies and experts worldwide;</li>
<li> Follow the latest news and notifications of your future employer.</li>
</ul>
<p>By registering on Lykeion you'll not only increase your chances to get noticed by companies, but will also have the possibility to search among hundreds of internships from technical field and Bachelor, Master and PhD programs of technical universities across the world.
</p>
<form id="joinnow" action="index.php?cat=st&do=register" method="post">
<a href="index.php?cat=st&do=register"><input class="btn" type="image" src="images/joinnow-btn.png"/></a>
</form>
</div>
</div>
</div>
<div id="shadow-down"></div>
<div id="testimonials">
<p>Lykeion is connecting highly qualified and motivated students, companies and universities across the world inside a common platform, allowing them to advertise themselves, search the database for published information and as a result, establishing a new communication channel between all three. </p>
<div class="author"><a href="index.php?do=more">Read more</a></div>
</div>
</div>
<?php
}
}
else if((@$_GET['do']=='show_post' || @$_GET['do']=='show_info') && $_SESSION['loged']!='true'){
?>
<div id="login-closed">
<a href="#" class="login-btn"><img src="images/login-btn.png"/></a>
</div>
<div id="login-box">
<div id="login-opened"><a href="#" class="login-btn"><img src="images/login-btn-opened.png"/></a></div>
<div id="login-box-content">
<form id="login-form" action="index.php" method="post">
<label>Username:</label>
<input type="text" name="username" />
<label>Password:</label>
<a href="index.php?do=forgotpassword">Forgot your password?</a>
<input type="password" name="password" />
<div id="login-form-bottom">
<div class="keepmeloggedin"><input type="checkbox" name="keeploggedin" value="KeepLoggedIn"/> Keep me logged in</div>
<input class="btn" type="submit" value="" name="user_login" >
</div>
</form>
</div>
</div>
<?php
$f=new frontend();
$f->menu("home");
?>
<div id="content">
<div id="simple-page-container">
<div id="head-section">
<img src="images/contact-us-icon.jpg" alt="Contact us" />
<h2>Log in or Register</h2>
<p>get involved</p>
</div>
<div class="clear"></div>
<div id="main-section">
<h4>EESTEC International</h4>
<h5>Power your future!</h5>
<p>You are not logged in. Log in by pressing the button on the top right corner. You are not register yet. <a href="index.php?cat=st&do=register">Click here</a> to register.
<p>Electrical Engineering STudents' European assoCiation</p>
<p>Mekelweg 4,<br/>2628 CD Delft,<br/>The Netherlands</p>
<p><a href="http://www.eestec.net">www.eestec.net</a><br/><a href="mailto:[email protected]">[email protected]</a></p>
<p>Find us on social networks:<br/>
<a class="icon" href="http://www.facebook.com/lykeion.eestec"><img src="images/facebook-logo.png"/></a>
<a class="icon" href="https://twitter.com/EESTEC"><img src="images/twitter-logo.png"/></a>
<a class="icon" href="https://plus.google.com/u/0/107902810588904084368/posts"><img src="images/google-plus-logo.png"/></a>
</p>
</div>
</div>
</div>
<?php
}
else if(@$_GET['do']=='preview'){
?>
<div id="login-closed">
<a href="#" class="login-btn"><img src="images/login-btn.png"/></a>
</div>
<div id="login-box">
<div id="login-opened"><a href="#" class="login-btn"><img src="images/login-btn-opened.png"/></a></div>
<div id="login-box-content">
<form id="login-form" action="index.php" method="post">
<label>Username:</label>
<input type="text" name="username" />
<label>Password:</label>
<a href="index.php?do=forgotpassword">Forgot your password?</a>
<input type="password" name="password" />
<div id="login-form-bottom">
<div class="keepmeloggedin"><input type="checkbox" name="keeploggedin" value="KeepLoggedIn"/> Keep me logged in</div>
<input class="btn" type="submit" value="" name="user_login" >
</div>
</form>
</div>
</div>
<?php
$f=new frontend();
$f->menu("home");
if(@$_GET['wt']=='study'){
$sql="SELECT a.ID, a.image, a.title,a.intro,a.date_of_creation,a.scolarship,a.jobtype,a.user,a.user_type FROM `articles` as a, `publish_articles` as p WHERE a.status='Active' AND a.publish=p.ID and a.deleted=0 AND p.status='publish' AND a.scolarship<>-1 order by a.date_of_creation desc";
$f->show_wall($sql);
}
else if(@$_GET['wt']=='job'){
$sql="SELECT a.ID, a.image, a.title,a.intro,a.date_of_creation,a.scolarship,a.jobtype,a.user,a.user_type FROM `articles` as a, `publish_articles` as p WHERE a.status='Active' AND a.publish=p.ID and a.deleted=0 AND p.status='publish' AND a.jobtype<>-1 order by a.date_of_creation desc";
$f->show_wall($sql);
}
else if(@$_GET['wt']=='article'){
$id_article=$_GET['id'];
$sql="SELECT a.ID, a.image, a.title,a.intro,a.date_of_creation,a.scolarship,a.jobtype,a.user,a.user_type FROM `articles` as a, `publish_articles` as p WHERE a.status='Active' AND a.publish=p.ID and a.deleted=0 AND p.status='publish' AND a.ID=".$id_article." order by a.date_of_creation desc";
$f->show_wall($sql);
}
else if(@$_GET['wt']=='companies'){
$f->show_wall_company();
}
else if($_GET['wt']=='universities'){
$f->show_wall_university();
}
else
$f->show_wall();
}
else if(@$_GET['do']=='terms'){
$f=new frontend();
$f->menu("home");
?>
<div id="content">
<div id="simple-page-container">
<div id="head-section">
<img src="images/terms-of-use-icon.jpg" alt="Contact us" />
<h2>TERMS OF USE</h2>
<p>know your rights</p>
</div>
<div class="clear"></div>
<div id="main-section">
<h3>Uses of personal information</h3>
<p>We use the information you provide to:</p>
<ul>
<li> Enable you to share your information and communicate with other Users, or provide your personal details to third parties offering combined services with Lykeion;</li>
<li> Administer your account with us and customize the service we provide to you and other Users;</li>
<li> Send you service or promotional communications through email and notices on the Lykeion website;</li>
<li> Connect you to opportunities by enabling companies and universities to get in contact with you through Lykeion;</li>
<li> Enable companies to view the CV in order to find appropriate students for the internships and job offers.</li>
</ul>
<h3>Your obligations</h3>
<h5>Service Eligibility</h5>
<p>To be eligible to use the Service, you must meet the following criteria and represent and warrant that you:</p>
<ul type="disc">
<li> are 18 years of age or older;</li><li> are not currently restricted from the Services, or not otherwise prohibited from having a Lykeion account;</li><li> are not a competitor of Lykeion or are not using the Services for reasons that are in competition with Lykeion;</li><li> will only maintain one Lykeion account at any given time;</li><li> have full power and authority to enter into this Agreement and doing so will not violate any other agreement to which you are a party;</li><li> will not violate any rights of Lykeion, including intellectual property rights such as copyright or trademark rights; </li><li> agree to provide at your cost all equipment, software, and internet access necessary to use the Services.
</li></ul>
<h5>Sign-In Credentials</h5>
<p>You agree to:</p>
<ul type="disc">
<li>Keep your password secure and confidential;</li><li> not permit others to use your account;</li><li> refrain from using other Users’ accounts;</li>
<li> refrain from selling, trading, or otherwise transferring your Lykeion account to another party;</li>
<li> refrain from charging anyone for access to any portion of Lykeion, or any information therein.</li>
</ul>
<h5>Security</h5>
<ul type="disc">
<li>Personal information you provide will be secured in accordance with industry standards and technology. Since the internet is not a 100% secure environment, we cannot ensure or warrant the security of any information you transmit to Lykeion. There is no guarantee that information may not be accessed, copied, disclosed, altered, or destroyed by breach of any of our physical, technical, or managerial safeguards.</li>
<li>You are responsible for maintaining the secrecy of your unique password and account information, and for controlling access to your email communications at all times.</li>
</ul>
<h3>Our rights and obligations</h3>
<h5>Services Availability</h5>
<p align="justify">For as long as Lykeion continues to offer the Services, Lykeion shall provide and seek to update, improve and expand the Services. As a result, we allow you to access Lykeion as it may exist and be available on any given day and have no other obligations, except as expressly stated in this Agreement. We may modify, replace, refuse access to, suspend or discontinue Lykeion, partially or entirely, or change and modify prices for all or part of the Services for you or for all our users in our sole discretion. All of these changes shall be effective upon their posting on our site or by direct communication to you unless otherwise noted. Lykeion further reserves the right to withhold, remove and or discard any content available as part of your account, with or without notice if deemed by Lykeion to be contrary to this Agreement. For avoidance of doubt, Lykeion has no obligation to store, maintain or provide you a copy of any content that you or other Users provide when using the Services.</p>
<h3>Lykeion USER DOs and DON'Ts</h3>
<p>
As a condition to access Lykeion, you agree to this Terms of use and to strictly observe the following DOs and DON'Ts:</p>
<p>Do undertake the following:</p>
<ul type="disc">
<li>Comply with all applicable laws, including, without limitation, privacy laws, intellectual property laws, export control laws, tax laws, and regulatory requirements;</li>
<li>Provide accurate information to us and update it as necessary;</li>
<li>Review and comply with our Terms of Use;</li>
<li>Review and comply with notices sent by Lykeion concerning the Services;</li>
<li>Use the Services in a professional manner.</li>
<li>Act dishonestly or unprofessionally by engaging in unprofessional behavior by posting inappropriate, inaccurate, or objectionable content to Lykeion;</li>
<li>Publish inaccurate information in the designated fields on the profile form. Please also protect sensitive personal information;</li>
<li>Create a user profile for anyone other than a natural person;</li>
<li>Harass, abuse or harm another person, including sending unwelcomed communications to others using Lykeion;</li>
<li>Invite people you do not know to join your network;</li>
<li>Upload a profile image that is not your likeness or a head-shot photo;</li>
<li>Use or attempt to use anothers account without authorization from the Company, or create a false identity on Lykeion;</li>
<li>Participate, directly or indirectly, in the setting up or development of a network that seeks to implement practices that are similar to sales by network or the recruitment of independent home salespeople to the purposes of creating a pyramid scheme or other similar practices.</li>
<li>Duplicate, license, sublicense, publish, broadcast, transmit, distribute, perform, display, sell, rebrand, or otherwise transfer information found on Lykeion;</li>
<li>Reverse engineer, decompile, disassemble, decipher or otherwise attempt to derive the source code for any underlying intellectual property used to provide the Services, or any part thereof ;</li>
<li>Utilize or copy information, content or any data you view on and/or obtain from Lykeion to provide any service that is competitive, in Lykeion’s sole discretion, with Lykeion;</li>
<li>Adapt, modify or create derivative works based on Lykeion or technology underlying the Services, or other Users’ content, in whole or part, except as permitted under Lykeion’s developer program;</li>
<li>Rent, lease, loan, trade, sell/re-sell access to Lykeion or any information therein, or the equivalent, in whole or part;</li>
<li>Deep-link to the Site for any purpose, (i.e. including a link to a Lykeion web page other than Lykeion’s home page) unless expressly authorized in writing by Lykeion or for the purpose of promoting your profile on Lykeion as set forth in Branding and Autorship;</li>
<li>Remove any copyright, trademark or other proprietary rights notices contained in or on Lykeion, including those of both Lykeion;</li>
<li>Remove, cover or otherwise obscure any form of advertisement included on Lykeion;</li>
<li>Collect, use, copy, or transfer any information, including, but not limited to, personally identifiable information obtained from Lykeion except as expressly permitted in this Terms of Use or as the owner of such information may expressly permit;</li>
<li>Share information of non-Users without their express consent;</li>
<li>Infringe or use Lykeion's brand, logos and/or trademarks, including, without limitation, using the word Lykeion in any business name, email, or URL or including Lykeion's trademarks and logos except as provided in the “Branding and Autorship;</li>
<li>Use manual or automated software, devices, scripts robots, other means or processes to access, scrape or "spider" any web pages or other services contained in the site;</li>
<li>Use bots or other automated methods to access Lykeion, add or download contacts, send or redirect messages, or perform other activities through Lykeion, unless explicitly permitted by Lykeion;</li>
<li>Access, via automated or manual means or processes, Lykeion for purposes of monitoring Lykeion's availability, performance or functionality for any competitive purpose;</li>
<li>Attempt to or actually access Lykeion by any means other than through the interfaces provided by Lykeion such as its mobile application or by navigating to lykeion.eestec.net using a web browser. This prohibition includes accessing or attempting to access Lykeion using any third-party service, including software-as-a-service platforms that aggregate access to multiple services, including Lykeion;</li>
<li>Attempt to or actually override any security component included in or underlying Lykeion;</li>
<li>Interfere with or disrupt or game Lykeion or the Services, including, but not limited to, any servers or networks connected to Lykeion, in particular Lykeions search algorithms.</li>
</ul>
<p></p>
</div>
</div>
</div>
<?php
}
else if(@$_GET['to']=='registered'){
echo '<div align="left" style="margin-left:50px;">
<p><strong>Thank you for registering!</strong></p>';
echo '<p>Please check you email. </p>
</div>';
}
else if(@$_GET['do']=='contact'){
if(@$_SESSION['loged']==false) {
?>
<div id="login-closed">
<a href="#" class="login-btn"><img src="images/login-btn.png"/></a>
</div>
<div id="login-box">
<div id="login-opened"><a href="#" class="login-btn"><img src="images/login-btn-opened.png"/></a></div>
<div id="login-box-content">
<form id="login-form" action="index.php" method="post">
<label>Username:</label>
<input type="text" name="username" />
<label>Password:</label>
<a href="index.php?do=forgotpassword">Forgot your password?</a>
<input type="password" name="password" />
<div id="login-form-bottom">
<div class="keepmeloggedin"><input type="checkbox" name="keeploggedin" value="KeepLoggedIn"/> Keep me logged in</div>
<input class="btn" type="submit" value="" name="user_login" >
</div>
</form>
</div>
</div>
<?php
}
$f=new frontend();
$f->menu("contact");
?>
<div id="content">
<div id="simple-page-container">
<div id="head-section">
<img src="images/contact-us-icon.jpg" alt="Contact us" />
<h2>CONTACT US</h2>
<p>get involved</p>
</div>
<div class="clear"></div>
<div id="main-section">
<h4>EESTEC International</h4>
<h5>Power your future!</h5>
<p>Electrical Engineering STudents' European assoCiation</p>
<p>Mekelweg 4,<br/>2628 CD Delft,<br/>The Netherlands</p>
<p><a href="http://www.eestec.net">www.eestec.net</a><br/><a href="mailto:[email protected]">[email protected]</a></p>
<p>Find us on social networks:<br/>
<a class="icon" href="http://www.facebook.com/lykeion.eestec"><img src="images/facebook-logo.png"/></a>
<a class="icon" href="https://twitter.com/EESTEC"><img src="images/twitter-logo.png"/></a>
<a class="icon" href="https://plus.google.com/u/0/107902810588904084368/posts"><img src="images/google-plus-logo.png"/></a>
</p>
</div>
</div>
</div>
<?php
}
else if(@$_GET['do']=='more'){
$f=new frontend();
$f->menu("home");
?>
<div id="login-closed">
<a href="#" class="login-btn"><img src="images/login-btn.png"/></a>
</div>
<div id="login-box">
<div id="login-opened"><a href="#" class="login-btn"><img src="images/login-btn-opened.png"/></a></div>
<div id="login-box-content">
<form id="login-form" action="index.php" method="post">
<label>Username:</label>
<input type="text" name="username" />
<label>Password:</label>
<a href="index.php?do=forgotpassword">Forgot your password?</a>
<input type="password" name="password" />
<div id="login-form-bottom">
<div class="keepmeloggedin"><input type="checkbox" name="keeploggedin" value="KeepLoggedIn"/> Keep me logged in</div>
<input class="btn" type="submit" value="" name="user_login" >
</div>
</form>
</div>
</div>
<div id="content">
<div id="simple-page-container">
<div id="head-section">
<img src="images/terms-of-use-icon.jpg" alt="Contact us" />
<h2>ABOUT LYKEION</h2>
<p></p>
</div>
<div class="clear"></div>
<div id="main-section">
<br><br>
<p align="justify">Recognizing the lack of platforms where students, universities and companies from EECS branches can come together to find an adequate target group that matches their interests and needs, NGO EESTEC (Electrical Engineering Students European Association) created such a platform: one where students, companies and universities can directly reach each other. This platform is EESTEC's portal, Lykeion! </p>
<p align="justify">Lykeion is connecting highly qualified and motivated students, companies and universities across the world inside a unique platform, allowing them to present themselves and search the database for needed information.
<p align="justify">For students, Lykeion presents a service for them to search for internships, careers, Bachelor/Master/PhD programs. This, in turn, represents a new communication channel between all students and universities and companies. The huge advantage of this project is its internationality, interactivity and various study programs which are available simply by registering on the portal. </p>
<p align="justify">Once registered, students can submit, store and edit their CV and profile page, view offers from international companies and universities and apply for internships, jobs or Bachelor/Master/PhD studies.
This portal acts as a tool to attract hardworking and motivated students in accordance with corporate culture and values.</p>
<center><img src="images/lykeion.jpg" width="300"></center>
<p align="justify">The Lykeion approach to academic opportunities provides students with a sophisticated, and yet more agile way to apply for Bachelor/Master/PhD study in one place.
<p align="justify">All registered Universities have the opportunity to publish their Bachelor/Master/PhD programs and all other academic offers to Lykeion users.
<p align="justify">This way, information announced by any registered University will be published on the portal, so all Lykeion members will be provided with an easy approach to academic offers. It will motivate students to apply for International educational programmes and make educational systems more powerful.</p>
<p align="justify">By entering in cooperation with EESTEC on Lykeion project, universities and companies are able to:</p>
<ul type="disc">
<li>Announce Bachelor, Master and PhD study programs;</li>
<li>Announce internships and jobs offers;</li>
<li>Announce research possibilities on all universities and companies;</li>
<li>Access to Lykeion CV database of students of technical sciences;</li>
<li>Establish direct communication channel with most perspective students of technical sciences;</li>
</ul></p>
<p align="justify">Students who register on Lykeion are not just ordinary future employees. Most of these students are active in international students organizations such as EESTEC or IEEE student branches, so they possess huge motivation for pursuing international career. They are experienced in teamwork, project management and acquire a wide knowledge of soft skills.
</p>
<p><strong>JOIN NOW</strong></p>
</div>
</div>
</div>
</div>
<?php
}
else if(@$_GET['to']=='registered'){
echo '<div align="left" style="margin-left:50px;">
<p><strong>Thank you for registering!</strong></p>';
echo '<p>Please check your email. </p>
</div>';
}
else if(@$_GET['activate']){
$activation=$_GET['activate'];
$user=new Students_user();
$f=new frontend();
$f->menu("home");
$t=$user->activate($activation);
echo $t;
}
else if(@$_SESSION['status']=="not activated"){
$account++;
echo '<div align="left" style="margin-left:50px;">
<p><strong>Your account is not activated yet or your account expired.</strong></p>';
echo '<p>If you are having problems with activating your account, contact website Administrator: [email protected].</p>
<p><a href="index.php?go=logout">Back</a>
</div>';
@$_SESSION[username]='';
@$_SESSION[status]='';
@$_SESSION[rank]='';
@$_SESSION[id]='';
@$_SESSION[name]='';
@$_SESSION[expire]='';
@$_SESSION[chat_id]='';
session_destroy();
}
else if(@$_GET['do']=="forgotpassword"){
$f=new frontend();
$f->menu("home");
$forgot=new forgot_password();
$forgot->show_form();
}
else if((@$_SESSION['loged']!='true' && @$_GET['to']=='') || @$_GET['go']=='logout') {
if(@$_GET['do']=='')
{
?>
<div id="login-closed">
<a href="#" class="login-btn"><img src="images/login-btn.png"/></a>
</div>
<div id="login-box">
<div id="login-opened"><a href="#" class="login-btn"><img src="images/login-btn-opened.png"/></a></div>
<div id="login-box-content">
<form id="login-form" action="index.php" method="post">
<label>Username:</label>
<input type="text" name="username" />
<label>Password:</label>
<a href="index.php?do=forgotpassword">Forgot your password?</a>
<input type="password" name="password" />
<div id="login-form-bottom">
<div class="keepmeloggedin"><input type="checkbox" name="keeploggedin" value="KeepLoggedIn"/> Keep me logged in</div>
<input class="btn" type="submit" value="" name="user_login" >
</div>
</form>
</div>
</div>
</div>
<?php
$f=new frontend();
$f->menu("home");
?>
<div id="featured">
<ul>
<li class="ss1"><img src="images/featured-image-1.png" alt="Featured image 1" width="100%"/></li>
</ul>
<form id="signup" action="index.php?cat=st&do=register" method="post">
<a href="index.php?cat=st&do=register"><input class="btn" type="image" src="images/signup-btn.png"/></a>
</form>
</div>
<div id="shadow-up"></div>
<div id="content">
<div id="info-container">
<div class="col active">
<a href="index.php?to=student#content"><img src="images/icon-students.png" alt="Students" />
<h2>STUDENTS</h2></a>
<p>interships and jobs</p>
</div>
<div class="col">
<a href="index.php?to=company#content"><img src="images/icon-companies.png" alt="Companies" />
<h2>COMPANIES</h2></a>
<p>seek you future employees</p>
</div>
<div class="col noMargin">
<a href="index.php?to=university#content"><img src="images/icon-universities.png" alt="Universities" />
<h2>UNIVERSITIES</h2></a>
<p>research possibilities</p>
</div>
<div class="clear"></div>
<div id="left-section">
<h4>Join Lykeion!</h4>
<h5>Why</h5>
<ul>
<li>enter your CV in unique database, which is viewed by companies and universities from whole world</li>
<li>apply for internships and jobs in high-tech companies</li>
<li>apply for Bachelor, Master and PhD studies on technical universities worldwide</li>
<li>establish direct communication channel with most recognizable and perspective universities, companies and experts worldwide</li>
<li>follow up the latest news and notifications of your future employer</li>
</ul>
<p>By registering on Lykeion you'll extend your chances to get noted by companies and got possibility to search among hundreds
of internships from technical science field and Bachelor, Master and PhD programs of technical universities from whole world.
</p>
<form id="joinnow" action="index.php?cat=st&do=register" method="post">
<a href="index.php?cat=st&do=register"><input class="btn" type="image" src="images/joinnow-btn.png"/></a>
</form>
</div>
</div>
</div>
<div id="shadow-down"></div>
<div id="testimonials">
<p>Lykeion is joining highly qualified and motivated students, companies and universities in Europe inside a common platform, allowing them to advertise themselves, search the database for published information and as a result, establishing a new communication channel between all three. </p>
<div class="author"><a href="index.php?do=more">Read more</a></div>
</div>
</div>
<?php
}
if(@$_GET['cat']=='st' && @$_GET['do']=='register'){
$f=new frontend();
$f->menu("student");
if(@$_GET['err']==1){
echo '
<script type="text/javascript">
function errorhide(){
$("#error_message").hide();
}
</script>
<div id="error_message"><br/><br/>Wrong letters from image.<br/><br/><a href="#" onclick="errorhide()">Close</a><br/></div>';
}
$reg= new Students_user();
if(@$_GET['step']==2)
$reg->show_education_form();
else if(@$_GET['step']==3){
$reg->show_register_last();
}
else
$reg->show_register_form();
}
if(@$_GET['cat']=='un' && @$_GET['do']=='register'){
$f=new frontend();
$f->menu("university");
if(@$_GET['err']==1){
echo '
<script type="text/javascript">
function errorhide(){
$("#error_message").hide();
}
</script>
<div id="error_message"><br/><br/>Wrong letters from image.<br/><br/><a href="#" onclick="errorhide()">Close</a><br/></div>';
}
$reg= new universitys();
if(@$_GET['step']==2)
$reg->show_register_step2 ();
else if(@$_GET['step']==3)
$reg->show_register_final ();
else
$reg->show_register_form();
echo '</div></div>';
}
if(@$_GET['cat']=='cm' && @$_GET['do']=='register'){
$f=new frontend();
$f->menu("company");
if(@$_GET['err']==1){
echo '
<script type="text/javascript">
function errorhide(){
$("#error_message").hide();
}
</script>
<div id="error_message"><br/><br/>Wrong letters from image.<br/><br/><a href="#" onclick="errorhide()">Close</a><br/></div>';
}
$reg= new companys();
if(@$_GET['step']==2)
$reg->show_register_final ();
else if(@$_GET['step']==3)
$reg->show_register_last ();
else
$reg->show_register_form();
echo '</div></div>';
}
}
if($account==0){
if(@$_SESSION['rank']=='student'){
// Escape to echo menu, profile-box and nav on these pages
if(@$_GET['do']!='contact' && @$_GET['do']!='more' && @$_GET['do']!='terms') {
$student= new frontend();
$student->menu("home");
$student->show_left_column_students();
echo '<div id="shadow-up"></div><div id="content"><div id="load"></div><div id="place">';
}
if(@$_GET['do']=='report_bug'){
$b=new bug();
$b->show_form();
}
else if(@$_GET['do']=='edit_cv_personal'){
echo '
<div id="article-wall">
<div id="edit-cv-container">
<h2>Edit your Curriculum Vitae</h2>
<a class="import-europass" href=javascript:ImportCV();>Import your europass CV</a>
<ul>
<li class="active first"><a href="index.php?cat=st&do=edit_cv_personal">Personal information</a></li>
<li><a href="index.php?cat=st&do=edit_cv_work">Work experience</a></li>
<li><a href="index.php?cat=st&do=edit_cv_education">Education</a></span></li>
<li class="last"><a href="index.php?cat=st&do=edit_cv_other">Other skills</a></li>
</ul>';
$cv= new Students_cv();
$cv->load_from_database($_SESSION['cv_id']);