Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AtulDwivedi committed Feb 12, 2017
1 parent 28b8026 commit 708c9e7
Show file tree
Hide file tree
Showing 184 changed files with 13,812 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,15 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/build


/bin
/build
/WebContent/WEB-INF/lib
.settings
.project
.classpath
/temp
/log
/resources/output
2 changes: 2 additions & 0 deletions META-INF/context.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<Context path="/OnlineExam"/>
75 changes: 75 additions & 0 deletions WebContent/AboutUs.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<%--
Document : AboutUs
Created on : Mar 14, 2009, 5:28:00 PM
Author : Srishti
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>www.CarrierMithr.com</title>
<style type="text/css">
<!--
.body {
margin:0%;
}
a:link {
color: #000066;
text-decoration: underline;
}
a:visited {
text-decoration: underline;
color: #C0DCC0;
}
a:hover {
text-decoration: none;
color: #996666;
}
a:active {
text-decoration: underline;
color: #FF9999;
}
.style8 {color: #000066}
.style9 {
color: #660000
}
-->
</style>
<body style="margin:0px" bgcolor="#4E2B21">
<table width="100%" height="707" border="1" valign="top" >
<tr>
<td height="78" colspan="2" bgcolor="#624631"><jsp:include page="Header.jsp"/></td>
</tr>
<tr>
<td width="7" height="621" bgcolor="#624631"><jsp:include page="menu.html"/></td>
<td width="747" valign="top" bgcolor="#CC9966">
<p align="center"><strong><font face="Times New Roman" color="blue" size="6"><b><br>
</b></font><font face="Times New Roman" size="6"><b> <span class="style8">CARRER MITRA </span></b></font></strong></p>
<p>  </p>
<hr align="center" size="4" color="purple">
<p><br>
</hr>
<font name="Times New Roman"color="#3by2"> </p>
<p><strong> <span class="style8">Carrer Mitra</span> is a professionally managed Society for Human Resource Development Services in Kerala. The society's objectives include providing training, counselling, testing and placement services. The route adopted by Carrer Mithr to HRD is through the design and implementation of new services which have the potential to influence the motivation, priorities and even the learning strategies of the students of Kerala.</strong></p>
<p align="justify"><strong>Carrer Mithr is a unique concept. We are professionally managed non profit Society, working for Human Resource Development in Kerala by offering services which motivate the youth of Kerala. The Society has concentrated on placement of fresh Engineering graduates / MCAs from the Kerala campuses. Since 2004 we have taken up the mission of coordinating the campus / freshers recruitment of BSc/Diploma students. The concept is that of a single window for placement for all Kerala colleges.</strong></p>
<p align="justify"><strong>Carrer Mithr is acknowledged as the pioneer in establishing the concept of coordinated single window placement for multiple Institutions.For more than few years, Carrer Mithr has been coordinating the single window placement of all Engineering colleges in Kerala</strong></p>
<div align="center" class="style9"><strong><u>Our areas of operations are </u><br /></p></strong>
<ol class="style18">
<li><strong> Campus placement (2011 pass out) </strong></li>
<li><strong> Freshers' placement (2011 / 2012 &amp; 2007 passouts) </strong></li>
<li><strong> BSc / Diploma recruitment. </strong></li>
<li><strong> Experienced candidates </strong></li>
</ol>
</div> </td>
</tr>
</table>
</body>
</html>
160 changes: 160 additions & 0 deletions WebContent/AddJobDetails.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
<%--
Document : AddJobDetails
Created on : April 29, 2012,
Author : user
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<style type="text/css">
<!--
.style1 {
font-size: 24px;
font-weight: bold;
color: #993300;
}
.style2 {
color: #000000;
font-weight: bold;
}
-->
</style>
<script language="javascript">
function check()
{
var a= document.form1.jid.value;
var b= document.form1.vacancies.value;
var c= document.form1.salary.value;
if(document.form1.jid.value=="")
{
alert("Enter Job Id");
document.form1.jid.focus();
return false;
}
else if(!parseInt(a))
{
alert("Enter integer");
document.form1.jid.focus();
return false;
}
if(document.form1.post.value=="")
{
alert("Enter Post");
document.form1.post.focus();
return false;
}
if(document.form1.criteria.value=="")
{
alert("Enter Criteria");
document.form1.criteria.focus();
return false;
}
if(document.form1.vacancies.value=="")
{
alert("Enter no: of Vacancies available");
document.form1.vacancies.focus();
return false;
}
else if(!parseInt(b))
{
alert("Enter integer");
document.form1.vacancies.focus();
return false;
}
if(document.form1.salary.value=="")
{
alert("Enter Salary");
document.form1.salary.focus();
return false;
}
else if(!parseInt(c))
{
alert("Enter integer");
document.form1.salary.focus();
return false;
}
if(document.form1.lastdate.value=="")
{
alert("Enter Last Date");
document.form1.lastdate.focus();
return false;
}
return true;
}
</script>
</head>
<body style="margin:0px" bgcolor="#FFFFFF"><jsp:useBean id="sjd" class="bean.SaveJobDetails" />
<jsp:setProperty name="sjd" property="*" />
<% //out.println(request.getParameter("username")); %>
<table width="100%" border="1" bgcolor="#FFFFFF">
<tr>
<td height="107" colspan="2"><jsp:include page="CompanyHeader.jsp"/></td>
</tr>
<tr>
<td width="1" height="512"><jsp:include page="Companymenu.html"/></td>
<td width="961" bgcolor="#6699CC">
<form name="form1" method="post" action="SaveJobDetails.jsp">
<table width="517" height="334" border="1" align="center" bgcolor="#FFCCCC">
<tr bordercolor="#0099FF">
<td height="30" colspan="2" bgcolor="#E3EAF4"><div align="center" class="style1">Job Description </div></td>
</tr>
<tr>
<td width="160" height="26" bordercolor="#0099FF" bgcolor="#E3EAF4"><div align="left" class="style2">JobID</div></td>
<td width="213" bordercolor="#0099FF" bgcolor="#E3EAF4">
<label>
<input name="jid" id="jid"type="text" size="30">
</label> </td>
</tr>
<tr>
<td height="26" bordercolor="#0099FF" bgcolor="#E3EAF4">
<div align="left" class="style2"> Name of Post </div></td>
<td bordercolor="#0099FF" bgcolor="#E3EAF4">
<input name="post" name="post" type="text" size="30"></td>
</tr>
<tr>
<td height="26" bordercolor="#0099FF" bgcolor="#E3EAF4"><div align="left" class="style2">Criteria</div></td>
<td bordercolor="#0099FF" bgcolor="#E3EAF4"><input name="criteria" name="criteria" type="text" size="30"></td>
</tr>
<tr>
<td height="26" bordercolor="#0099FF" bgcolor="#E3EAF4"><div align="left" class="style2">No: of Vacancies </div></td>
<td bordercolor="#0099FF" bgcolor="#E3EAF4"><input name="vacancies" name="vacancies" type="text" size="30"></td>
</tr>
<tr>
<td height="26" bordercolor="#0099FF" bgcolor="#E3EAF4"><div align="left" class="style2">Salary/Annum</div></td>
<td bordercolor="#0099FF" bgcolor="#E3EAF4"><input name="salary" name="salary" type="text" size="30"></td>
</tr>
<tr>
<td height="26" bordercolor="#0099FF" bgcolor="#E3EAF4"><div align="left" class="style2">Last Date<font color="red">&nbsp;&nbsp;(dd/mm/yy) </font></div></td>
<td bordercolor="#0099FF" bgcolor="#E3EAF4"><jsp:include page="datePicker2.html"/>
<!-- <input name="lastdate" name="lastdate" type="text" size="30"> --></td>
</tr>
<tr bordercolor="#0099FF">
<td height="28" colspan="2" bgcolor="#E3EAF4">
<div align="center">
<input type="submit" name="Submit" value="Submit" onClick="return check()">
</div> </td>
</tr>
</table>
</form>
<h2>&nbsp;</h2>
</td>
</tr>
</table>
</body>
</html>
Loading

0 comments on commit 708c9e7

Please sign in to comment.