forked from pandian4github/online-job-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
100 lines (95 loc) · 2.75 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
<?php
session_start();
//if(!isset($_SESSION['hrloggedin']))
//{
// header("location:login.php");
//}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Resume classification</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-fileupload.css">
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="common.css">
<script type="text/javascript" src="bootstrap/js/bootstrap-fileupload.js"></script>
<script type="text/javascript">
function showerror(i)
{
var error=["nameerror","rollnoerror","phoneerror","mailiderror","batcherror"];
var x=document.getElementById(error[i]);
x.className="visible";
}
</script>
</head>
<body>
<?php include("sitelayout.php"); ?>
<div class="span8" id="main-content">
<br/>
<center>
<div id='navbar'>
<ul class="nav nav-pills">
<li class="active"><a href="#">Home</a></li>
<li><a href="desc.php">Description</a></li>
<li><a href="employer.php">Employer</a></li>
<li><a href="employee.php">Employee</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
</center>
<center><span id="entryhead">Home</span></center>
<p>
<b>What is Resume classification ?</b>
</p>
<p>
This app eases the way in which a company recruits an employee or the way in which a person looks for a job.
</p>
<p>
<b>What this app includes ?</b>
</p>
<p>
The options available in this app are
<ul>
<li>Search for a job</li>
<li>Recruit an employee</li>
<li>Show all the eligible employees in the order of eligibility</li>
<li>Show list of all companies that a person can apply for</li>
</ul>
</p>
<p>
<b>Features</b>
</p>
<p>
Some of the main features of the app are :
<ul>
<li>The details of the users and companies are stored online so that the user can access the information at anytime and anywhere.</li>
<li>List all matching companies/employees ie, not just the highest matching one.</li>
</ul>
</p>
<br/>
</div>
<?php include('sitelayout2.php'); include('footer.php'); ?>
<?php
if(isset($_SESSION['passchanged']))
if($_SESSION['passchanged']==1)
{
echo "<script type='text/javascript'> alert('Password changed !'); </script>";
$_SESSION['passchanged']=0;
}
if(isset($_SESSION['updatesuccess']))
if($_SESSION['updatesuccess']==1)
{
echo "<script type='text/javascript'> alert('Updated successfully !'); </script>";
$_SESSION['updatesuccess']=0;
}
if(isset($_SESSION['entrysuccess']))
if($_SESSION['entrysuccess']==1)
{
echo "<script type='text/javascript'> alert('Entry successful'); </script>";
$_SESSION['entrysuccess']=0;
}
$_SESSION['entryerror']=0;
?>
</body>
</html>