Skip to content

Commit

Permalink
Placement initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dhanush72 committed Oct 18, 2019
0 parents commit 322d96a
Show file tree
Hide file tree
Showing 358 changed files with 90,888 additions and 0 deletions.
28 changes: 28 additions & 0 deletions applyjob.php
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
}


?>
94 changes: 94 additions & 0 deletions approval.php
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>
9 changes: 9 additions & 0 deletions assets/css/bootstrap.no-icons.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit 322d96a

Please sign in to comment.