-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 322d96a
Showing
358 changed files
with
90,888 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
session_start(); | ||
$sid = $_SESSION['s_id']; | ||
$jid=$_POST['jid']; | ||
$sid=$_POST['sid']; | ||
|
||
$host="localhost"; | ||
$user="root"; | ||
$pass="root"; | ||
$conn=mysql_connect("$host","$user","$pass"); | ||
mysql_select_db("placement",$conn); | ||
|
||
|
||
|
||
$sql="insert into applied_stud (jid,sid) values ('$jid','$sid')"; | ||
|
||
|
||
if(!mysql_query($sql,$conn)) | ||
{ | ||
die ('error:'.mysql_error()); | ||
} | ||
else{ | ||
header("location:latestjobs.php"); // put your home page neme here | ||
} | ||
|
||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<?php | ||
include "head.html"; | ||
?> | ||
|
||
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet"> | ||
|
||
<!--##################### | ||
Additional Styles (required) | ||
######################--> | ||
<style> | ||
html,body { | ||
height:100%; | ||
width:100%; | ||
position:relative; | ||
} | ||
#background-carousel{ | ||
position:fixed; | ||
width:100%; | ||
height:100%; | ||
z-index:-1; | ||
} | ||
.carousel, | ||
.carousel-inner { | ||
width:100%; | ||
height:100%; | ||
z-index:0; | ||
overflow:hidden; | ||
} | ||
.item { | ||
width:100%; | ||
height:100%; | ||
background-position:center center; | ||
background-size:cover; | ||
z-index:0; | ||
} | ||
|
||
#content-wrapper { | ||
position:absolute; | ||
z-index:1 !important; | ||
min-width:100%; | ||
min-height:100%; | ||
} | ||
</style> | ||
|
||
|
||
<body> | ||
|
||
<div id="background-carousel"> | ||
<div id="myCarousel" class="carousel slide" data-ride="carousel"> | ||
<div class="carousel-inner"> | ||
<div class="item active" style="background-image:url(img/slider1.jpg)"></div> | ||
<div class="item" style="background-image:url(img/slider2.jpg)"></div> | ||
<div class="item" style="background-image:url(img/slider3.jpg)"></div> | ||
<div class="item" style="background-image:url(img/slider4.jpg)"></div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="container-fluid"> | ||
<div id="page-login" class="row"> | ||
<div class="col-xs-12 col-md-4 col-md-offset-4 col-sm-6 col-sm-offset-3"> | ||
<div class="box"> | ||
<div class="box-content"> | ||
<div class="text-center"> | ||
<h3 class="page-header">Placement Login</h3> | ||
</div> | ||
<center><h3><Font Color="red">You Are Not Yet Approved By TPO.</Font></h3> | ||
</center> | ||
<div class="text-center"> | ||
|
||
<a href="index.php" class="btn btn-small btn-block btn-primary"> | ||
<span class="hidden-xs">Go Back</span> | ||
</a></div> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<script src="http://codeorigin.jquery.com/jquery-1.10.2.min.js"></script> | ||
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> | ||
<script> | ||
$(document).ready(function() { | ||
$('#myCarousel').carousel({ | ||
pause: 'none' | ||
}) | ||
}); | ||
</script> | ||
|
||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.