Skip to content

Commit

Permalink
Merge pull request #4 from Sreelal-c/link-button-fixes
Browse files Browse the repository at this point in the history
Button-theming-fixes 
database sql file updates under documentation/database
  • Loading branch information
SreelalChalil committed May 10, 2016
2 parents ac6599a + cb10b4e commit 6de3f13
Show file tree
Hide file tree
Showing 8 changed files with 361 additions and 292 deletions.
527 changes: 253 additions & 274 deletions .idea/workspace.xml

Large diffs are not rendered by default.

114 changes: 102 additions & 12 deletions Documentation/Database/JobPortal.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Apr 11, 2016 at 01:43 PM
-- Generation Time: May 10, 2016 at 08:47 AM
-- Server version: 5.7.9
-- PHP Version: 5.6.16

Expand All @@ -22,6 +22,53 @@ SET time_zone = "+00:00";

-- --------------------------------------------------------

--
-- Table structure for table `admin`
--

DROP TABLE IF EXISTS `admin`;
CREATE TABLE IF NOT EXISTS `admin` (
`adm_id` int(20) NOT NULL,
`adm_name` varchar(100) NOT NULL,
`adm_pass` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `admin`
--

INSERT INTO `admin` (`adm_id`, `adm_name`, `adm_pass`) VALUES
(1, 'admin', 'password');

-- --------------------------------------------------------

--
-- Table structure for table `application`
--

DROP TABLE IF EXISTS `application`;
CREATE TABLE IF NOT EXISTS `application` (
`apply_id` int(20) NOT NULL AUTO_INCREMENT,
`user_id` int(20) DEFAULT NULL,
`emp_id` int(20) DEFAULT NULL,
`job_id` int(20) DEFAULT NULL,
`status` int(20) DEFAULT NULL,
`date_applied` varchar(20) NOT NULL,
PRIMARY KEY (`apply_id`),
KEY `user_id` (`user_id`),
KEY `emp_id` (`emp_id`),
KEY `job_id` (`job_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;

--
-- Dumping data for table `application`
--

INSERT INTO `application` (`apply_id`, `user_id`, `emp_id`, `job_id`, `status`, `date_applied`) VALUES
(6, 8, 1, 2, NULL, '18-04-16');

-- --------------------------------------------------------

--
-- Table structure for table `employer`
--
Expand All @@ -39,16 +86,18 @@ CREATE TABLE IF NOT EXISTS `employer` (
`phone` varchar(100) DEFAULT NULL,
`location` varchar(200) DEFAULT NULL,
`profile` varchar(700) DEFAULT NULL,
`logo` varchar(50) DEFAULT NULL,
PRIMARY KEY (`eid`),
KEY `log_id` (`log_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

--
-- Dumping data for table `employer`
--

INSERT INTO `employer` (`eid`, `log_id`, `ename`, `etype`, `industry`, `address`, `pincode`, `executive`, `phone`, `location`, `profile`) VALUES
(1, 18, 'Infosys Pvt Ltd', 'Company', 'Software Services', 'Infosys,\r\nIT Zone,\r\n4 - BE,\r\nBangalore', '458796', 'Ajith', '9145512345', 'India,Karnataka,Bengaluru', 'Infosys is a global leader in consulting, technology, and outsourcing and next-generation services. We enable clients in more than 50 countries to outperform the competition and stay ahead of the innovation curve.');
INSERT INTO `employer` (`eid`, `log_id`, `ename`, `etype`, `industry`, `address`, `pincode`, `executive`, `phone`, `location`, `profile`, `logo`) VALUES
(1, 18, 'Infosys Pvt Ltd', 'Company', 'Software Services', 'Infosys,\r\nIT Zone,\r\n4 - BE,\r\nBangalore', '458796', 'Ajith', '9145512345', 'India,Karnataka,Bengaluru', 'Infosys is a global leader in consulting, technology, and outsourcing and next-generation services. We enable clients in more than 50 countries to outperform the competition and stay ahead of the innovation curve.', 'Infosys Pvt Ltd1.jpg'),
(2, 23, 'Microsoft', 'Company', 'Software Services', 'Microsoft, Bangalore, Karnataka', '456987', 'Arun', '78945612332', 'India,Karnataka,Bommasandra', NULL, NULL);

-- --------------------------------------------------------

Expand All @@ -74,14 +123,16 @@ CREATE TABLE IF NOT EXISTS `jobs` (
`postdate` varchar(20) NOT NULL,
PRIMARY KEY (`jobid`),
KEY `eid` (`eid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;

--
-- Dumping data for table `jobs`
--

INSERT INTO `jobs` (`jobid`, `eid`, `title`, `jobdesc`, `vacno`, `experience`, `basicpay`, `fnarea`, `location`, `industry`, `ugqual`, `pgqual`, `profile`, `postdate`) VALUES
(2, 1, 'Network Administrator', 'Consulting with clients to specify system requirements and design solutions\r\nBudgeting for equipment and assembly costs\r\nAssembling new systems\r\nMaintaining existing software and hardware and upgrading any that have become obsolete\r\nWorking in tandem with IT support personnel\r\nProviding network administration and support', 3, '7', 'Rs75000', 'Network Administration', 'India,Karnataka,Bengaluru', 'Software Services', 'B.Tech/B.E.', 'M.Tech', 'Patience,\r\nTechnical skills.\r\nIT skills,\r\nInterpersonal skills,\r\nEnthusiasm,\r\nTeamworking skills,\r\nInitiative,\r\nCommitment to quality,\r\nAttention to detail.', '09-04-16');
(2, 1, 'Network Administrator', 'Consulting with clients to specify system requirements and design solutions\r\nBudgeting for equipment and assembly costs\r\nAssembling new systems\r\nMaintaining existing software and hardware and upgrading any that have become obsolete\r\nWorking in tandem with IT support personnel\r\nProviding network administration and support', 3, '7', 'Rs75000', 'Network Administration', 'India,Karnataka,Bengaluru', 'Software Services', 'B.Tech/B.E.', 'M.Tech', 'Patience,\r\nTechnical skills.\r\nIT skills,\r\nInterpersonal skills,\r\nEnthusiasm,\r\nTeamworking skills,\r\nInitiative,\r\nCommitment to quality,\r\nAttention to detail.', '09-04-16'),
(3, 1, 'Software Engineer', 'The focus of this position is the design and development of the core V-PIL services infrastructure, including custom automation software, job schedulers, data analysis, data visualization, and web development.', 3, '5', 'Rs 1000000', 'Network Virtualizing', 'India,Karnataka,Bengaluru', 'Software Services', 'B.Tech/B.E.', 'M.Tech', 'Strong ability in JavaScript.\r\nStrong ability in database design.\r\nExperience developing and executing performance test suites.\r\nStrong test suite development, execution and automation experience.\r\nFamiliarity with Jenkins and knowledge of existing cloud test suites, including Tempest and Rally.\r\nExperience with continuous integration practices.\r\nExperience with Juju, Charms and MAAS.', '15-04-16'),
(4, 2, 'Web Developer', 'Development of interactive websites at microfost', 5, '3', 'Rs 25000', 'Web Development', 'India,Kerala,Ernakulam', 'Software Services', 'B.Tech/B.E.', 'Not Pursuing Post Graduation', 'Knowledge in ASP.NET, SQL server', '16-04-16');

-- --------------------------------------------------------

Expand All @@ -106,16 +157,17 @@ CREATE TABLE IF NOT EXISTS `jobseeker` (
`photo` varchar(200) DEFAULT NULL,
PRIMARY KEY (`user_id`),
KEY `log_id` (`log_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;

--
-- Dumping data for table `jobseeker`
--

INSERT INTO `jobseeker` (`user_id`, `log_id`, `name`, `phone`, `location`, `experience`, `skills`, `basic_edu`, `master_edu`, `other_qual`, `dob`, `Resume`, `photo`) VALUES
(7, 14, 'Akshay V K', '7894561231', 'India,West Bengal,Kalaikunda', '5', 'construction , Tax ', 'Not Pursuing Graduation', 'Not Pursuing Post Graduation', NULL, NULL, NULL, ''),
(8, 20, 'Sreelal C', '8943202726', 'India,Kerala,Kozhikode', '1', 'Experience in Php development , HTML , MYSQL, Ajax', 'B.Tech/B.E.', 'Not Pursuing Post Graduation', NULL, NULL, NULL, NULL),
(9, 21, 'abc', '1234567890', 'Iceland,Austurland,Bakkafjor ur', '1', 'sjndsnn,mnkjlnlnl jnn ', 'B.A', 'CA', NULL, NULL, NULL, NULL);
(7, 14, 'Akshay V K', '7894561231', 'India,West Bengal,Kalaikunda', '5', 'construction , Tax ', 'Not Pursuing Graduation', 'Not Pursuing Post Graduation', NULL, NULL, NULL, 'Akshay V K7.jpg'),
(8, 20, 'Sreelal C', '8943202726', 'India,Kerala,Kozhikode', '1', 'Experience in Php development , HTML , MYSQL, Ajax', 'B.Tech/B.E.', 'Not Pursuing Post Graduation', NULL, NULL, 'Sreelal C8.docx', 'Sreelal C8.JPG'),
(9, 21, 'abc', '1234567890', 'Iceland,Austurland,Bakkafjor ur', '1', 'sjndsnn,mnkjlnlnl jnn ', 'B.A', 'CA', NULL, NULL, NULL, NULL),
(10, 22, 'jishnu k s', '9526919061', 'India,Kerala,Sulthan Bathery', '9+', 'engineering at kmct', 'B.Tech/B.E.', 'MBA/PGDM', NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

Expand All @@ -134,7 +186,7 @@ CREATE TABLE IF NOT EXISTS `login` (
UNIQUE KEY `email` (`email`),
KEY `log_id` (`log_id`),
KEY `log_id_2` (`log_id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=latin1;

--
-- Dumping data for table `login`
Expand All @@ -144,12 +196,42 @@ INSERT INTO `login` (`log_id`, `email`, `password`, `usertype`, `status`) VALUES
(14, '[email protected]', '$2y$10$3/cBmurjZzBYUkaLYE.Y..skkTdBT/YVCZb51Q3yWx73xd.Eyr13e', 'jobseeker', 1),
(18, '[email protected]', '$2y$10$/TP7ishP6SRCroPNfWcVqO1V0mMH47X.Qsft1u/Ed9xFtmietk2ga', 'employer', 0),
(20, '[email protected]', '$2y$10$MfycE3o6lgrM92f5sB8kPu7c38XQkT6FeL5YF3pgx/MM/Jy12xM5i', 'jobseeker', 1),
(21, '[email protected]', '$2y$10$ZWYhKrFT9B9m0CaysgRy5e1XMZ/e130v0LGkqw4QpkXbJ3WIV.YYe', 'jobseeker', 1);
(21, '[email protected]', '$2y$10$ZWYhKrFT9B9m0CaysgRy5e1XMZ/e130v0LGkqw4QpkXbJ3WIV.YYe', 'jobseeker', 1),
(22, '[email protected]', '$2y$10$VKC/bSdNBZWJ6PrOwnJ6xezAj1aq5VioW9YjFUsjxnAJHUkZHRWBq', 'jobseeker', 1),
(23, '[email protected]', '$2y$10$q.xafcSTYUoKtz2FIhrf7OX1x0weMZRzY3beiqoO2NGe0PUKJlzga', 'employer', 1);

-- --------------------------------------------------------

--
-- Table structure for table `selection`
--

DROP TABLE IF EXISTS `selection`;
CREATE TABLE IF NOT EXISTS `selection` (
`sel_id` int(20) NOT NULL AUTO_INCREMENT,
`user_id` int(20) DEFAULT NULL,
`emp_id` int(20) DEFAULT NULL,
`job_id` int(20) DEFAULT NULL,
`status` int(5) DEFAULT NULL,
`date` varchar(20) NOT NULL,
PRIMARY KEY (`sel_id`),
KEY `user_id` (`user_id`),
KEY `emp_id` (`emp_id`),
KEY `job_id` (`job_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `application`
--
ALTER TABLE `application`
ADD CONSTRAINT `fk_empid` FOREIGN KEY (`emp_id`) REFERENCES `employer` (`eid`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_job` FOREIGN KEY (`job_id`) REFERENCES `jobs` (`jobid`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_userid` FOREIGN KEY (`user_id`) REFERENCES `jobseeker` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `employer`
--
Expand All @@ -168,6 +250,14 @@ ALTER TABLE `jobs`
ALTER TABLE `jobseeker`
ADD CONSTRAINT `fk_login` FOREIGN KEY (`log_id`) REFERENCES `login` (`log_id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `selection`
--
ALTER TABLE `selection`
ADD CONSTRAINT `fk_emp` FOREIGN KEY (`emp_id`) REFERENCES `employer` (`eid`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_jobs` FOREIGN KEY (`job_id`) REFERENCES `jobs` (`jobid`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_user` FOREIGN KEY (`user_id`) REFERENCES `jobseeker` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
2 changes: 1 addition & 1 deletion home_search.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

echo "</tr>";
}
echo "<h4>Login to view more</h4>";
echo "<h4> <a href='login.php'>Login to view more</a> </h4>";
}

} ?>
Expand Down
2 changes: 1 addition & 1 deletion jobseeker/jobs_by_emp.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function goBack() {
echo "<td>".$result['title']."</td>";
echo "<td>".substr($result['jobdesc'],0,120)." ........</td>";
echo "<td>".$result['postdate']."</td>";
echo "<td> <button type='button' class='btn btn-success'> <a style='color: whitesmoke;' href='view_jobs.php?jid=".$result['jobid']."'>View Job</a></button> </td>";
echo "<td> <a style='color: whitesmoke;' href='view_jobs.php?jid=".$result['jobid']."'> <button type='button' class='btn btn-success'>View Job</button></a> </td>";
echo "</tr>";
}
?>
Expand Down
4 changes: 2 additions & 2 deletions jobseeker/profile.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function advsearch() {
</div>
<strong><?php echo $row['name']; ?> </strong>
<!-- Button trigger modal -->
<p> <button type="button" class="btn btn-default" ><a href="chane_image.php">Change Image</a> </button>
<p> <a href="chane_image.php"><button type="button" class="btn btn-default" >Change Image </button></a>
<!-- profile pic --->
</aside>
<!------------------------------------------------------------------------------- -->
Expand Down Expand Up @@ -192,7 +192,7 @@ function advsearch() {
echo "<td>" . $result2['title'] . "</td>";
echo "<td>" . substr($result2['jobdesc'],0,120) . " ......</td>";
echo "<td width='20px'>" . $result2['postdate'] . "</td>";
echo "<td> <button type='button' class='btn btn-success'> <a style='color: whitesmoke;' href='view_jobs.php?jid=" . $result2['jobid'] . "'>View Job</a> </button> </td>";
echo "<td> <a style='color: whitesmoke;' href='view_jobs.php?jid=" . $result2['jobid'] . "'> <button type='button' class='btn btn-success'>View Job</button></a> </td>";
echo "</tr>";
}
}
Expand Down
4 changes: 2 additions & 2 deletions jobseeker/view_applied.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<table class="table table-responsive" style="margin-top: 30px;">
<th>Employer</th>
<th>Job Title</th>
<th style="width: 70px">Job Description</th>
<th>Job Description</th>
<th>Date of Posting</th>
<th>Date on Applied</th>
<th colspan="3">Actions</th>
Expand All @@ -80,7 +80,7 @@
echo "<td>" . substr($result['jobdesc'],0,120) ." .......</td>";
echo "<td>" . $result['postdate'] . "</td>";
echo "<td>" . $row['date_applied']."</td>";
echo "<td> <button type='button' class='btn btn-success'> <a style='color: whitesmoke;' href='view_jobs.php?jid=" . $result['jobid'] . "'>View Job</a></button> </td>";
echo "<td> <a style='color: whitesmoke;' href='view_jobs.php?jid=" . $result['jobid'] . "'><button type='button' class='btn btn-success'>View Job</button> </a></td>";
echo "</tr>";
}
}
Expand Down
Empty file added uploads/logo/logo.txt
Empty file.
Empty file added uploads/resume/resume.txt
Empty file.

0 comments on commit 6de3f13

Please sign in to comment.