| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/rsdgroup/ |
Upload File : |
<?php
include_once("conf/settings.php");
include_once("conf/func.php");
$jobid = $_REQUEST['jobid'];
$JobDetails = getCareerById("tblJobs",$jobid);
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>RSD</title>
<link rel="stylesheet" href="css/style.css">
<link media="screen" rel="stylesheet" href="css/colorbox_new1.css" />
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<![endif]-->
<script src="js/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/jquery.mousewheel.min.js"></script>
<script type="text/javascript">
$.fn.cycle.defaults.speed = 1500;
$.fn.cycle.defaults.timeout = 1000;
$(function() {
// run the code in the markup!
$('#demos pre code').each(function() {
eval($(this).text());
});
});
function IsValidEmail(email){
var filter = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
return filter.test(email);
}
function IsNumeric(sText){
var ValidChars = "0123456789-";
var IsNumber=true;
var Char;
for (i = 0; i < sText.length && IsNumber == true; i++){
Char = sText.charAt(i);
if (ValidChars.indexOf(Char) == -1)
{
IsNumber = false;
}
}
return IsNumber;
}
function validate123(){
var appName = $("#appName").val();
var appExp = $("#appExp").val();
var appSpec = $("#appSpec").val();
var appAddress = $("#appAddress").val();
var appCity = $("#appCity").val();
var appPhone = $("#appPhone").val();
var appEmail = $("#appEmail").val();
var appHear = $("#appHear").val();
var appCurCompany= $("#appCurCompany").val();
var appCTC = $("#appCTC").val();
var appExpect = $("#appExpect").val();
var appRef = $("#appRef").val();
var appJoin = $("#appJoin").val();
var appResume = $("#appResume").val();
appName = jQuery.trim(appName);
appExp = jQuery.trim(appExp);
appSpec = jQuery.trim(appSpec);
appAddress = jQuery.trim(appAddress);
appCity = jQuery.trim(appCity);
appPhone = jQuery.trim(appPhone);
appEmail = jQuery.trim(appEmail);
appHear = jQuery.trim(appHear);
appCurCompany= jQuery.trim(appCurCompany);
appCTC = jQuery.trim(appCTC);
appExpect = jQuery.trim(appExpect);
appRef = jQuery.trim(appRef);
appJoin = jQuery.trim(appJoin);
appResume = jQuery.trim(appResume);
var arr1 = new Array;
arr1 = appResume.split("\\");
var len = arr1.length;
var img1 = arr1[len-1];
var filext = img1.substring(img1.lastIndexOf(".")+1);
if(appName == ''){
alert('Please enter name');
$("#appName").focus();
return false;
}
if(appExp == ''){
alert('Please enter Experience ');
$("#appExp").focus();
return false;
}
if(appSpec == ''){
alert('Please enter Area of Specialization');
$("#appSpec").focus();
return false;
}
if(appAddress == ''){
alert('Please enter Address');
$("#appAddress").focus();
return false;
}
if(appCity == ''){
alert('Please enter City');
$("#appCity").focus();
return false;
}
if(appPhone == ''){
alert('Please enter Phone');
$("#appPhone").focus();
return false;
}
if(appPhone.length < 10){
alert("Please Enter Valid mobile number");
$("#appPhone").focus();
return false;
}
if(appPhone.length > 12){
alert("Too long mobile number");
$("#appPhone").focus();
return false;
}
if(!IsNumeric(appPhone)){
alert("Please enter mobile number");
$("#appPhone").focus();
return false;
}
if(appEmail == ''){
alert('Please enter email');
$("#appEmail").focus();
return false;
}
if(!IsValidEmail(appEmail)){
alert("Please enter valid email");
$("#appEmail").focus();
return false;
}
if(appHear == ''){
alert('How did you hear about us');
$("#appHear").focus();
return false;
}
if(appCurCompany == ''){
alert('Please enter Current Company');
$("#appCurCompany").focus();
return false;
}
if(appCTC == ''){
alert('Please enter CTC');
$("#appCTC").focus();
return false;
}
if(!IsNumeric(appCTC)){
alert("Please Enter Numeric Number");
$("#appCTC").focus();
$("#appCTC").val="";
return false;
}
if(appExpect == ''){
alert('Please enter Expectation');
$("#appExpect").focus();
return false;
}
if(!IsNumeric(appExpect)){
alert("Please Enter Numeric Number");
$("#appExpect").focus();
$("#appExpect").val="";
return false;
}
if(appRef == ''){
alert('Please enter Reference');
$("#appRef").focus();
return false;
}
if(appJoin == ''){
alert('Please enter Joining Date');
$("#appJoin").focus();
return false;
}
if(!IsNumeric(appJoin)){
alert("Please Enter Numeric Value");
$("#appJoin").focus();
$("#appJoin").val="";
return false;
}
if(appResume == ''){
alert('Please attach Resume');
$("#appResume").focus();
return false;
}
if(appResume !== "" && (filext !== "doc" && filext !== "docx" && filext !== "pdf"))
{
alert("Invalid File Format Selected");
$("#appResume").focus();
return false;
}
}
function formReset(){
document.getElementById("carrerForm").reset();
return false;
}
function abc(){
$("#response").hide(2500);
}
function isNumber(evt) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
}
</script>
</head>
<body>
<!--header start here-->
<?php include_once("inc/header.php"); ?>
<!--header end here-->
<!--section start here-->
<section>
<div class="braedcrumb"><a href="<?php echo $baseurl; ?>">Home</a> > <a href="careers.html">Careers</a> >
<a href="jobs-<?php echo $JobDetails[0]['job_key'];?>.html">Job Details</a> > <span>Apply Now</span></div>
<div class="ourPro">
<h3>Careers</h3>
<h2>Apply Job</h2>
<div class="contact_box">
<div class="distrubution_left">
<form method="post" action="writeCareer.html" enctype= "multipart/form-data" id='carrerForm'>
<div class="table_box_apply">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr id='response'>
<?php
if(isset($_GET['msg']) == 'suc'){ ?>
<td colspan='3' align='center'><font color='green'><b>Your Application submitted</b></font></td>
<?php }
else if(isset($_GET['msg']) == 'err'){ ?>
<td colspan='3' align='center'><font color='red'><b>There is some error.Please try after some time</b></font></td>
<?php }else{}
?>
</tr>
<tr>
<th width="27%" height="40" align="left" valign="top">Job Id</th>
<td width="9%" height="40" align="left" valign="top">:</td>
<td width="64%" height="40" valign="top"><div class="fullbox">
<input name="jobTitle" id="jobTitle" type="text" class="custom_input_full" value="<?php echo $JobDetails[0]['job_id'];?>" readonly="readonly">
<input type="hidden" name="jobId" value="<?php echo md5("RSDGROUPJOB".$JobDetails[0]['id']);?>">
</div>
</td>
</tr>
<tr>
<th height="40" align="left" valign="top">Name<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appName" id="appName" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Experience<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appExp" id="appExp" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Area of Specialization<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appSpec" id="appSpec" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Address<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appAddress" id="appAddress" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">City<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appCity" id="appCity" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Phone<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox">
<input name="appPhone" id="appPhone" type="text" class="custom_input_full" onKeyPress="return isNumber(event);" maxlength="10"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Email<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appEmail" id="appEmail" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">How did you hear about us<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appHear" id="appHear" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Current Company and Location<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appCurCompany" id="appCurCompany" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Current CTC Per Annum (In Rs.)<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appCTC" id="appCTC" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Expected CTC Per Annum (In Rs.)<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appExpect" id="appExpect" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">References<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appRef" id="appRef" type="text" class="custom_input_full"></div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Time required for joining<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appJoin" id="appJoin" type="text" class="custom_input_half"> Days</div></td>
</tr>
<tr>
<th height="40" align="left" valign="top">Attach Your CV<code>*</code></th>
<td height="40" align="left" valign="top">:</td>
<td height="40" valign="top"><div class="fullbox"><input name="appResume" id="appResume" type="file" class="custom_input_full">
<br/><span style="font-size: 11px;">Allowed formats are .doc, .docx and .pdf </span></div></td>
</tr>
<tr>
<th height="30" align="left" valign="middle"> </th>
<td height="30" align="left" valign="middle"> </td>
<td height="50" valign="middle"><input name="button" value="Submit" type="submit" onClick="return validate123();" class="submit_button">
<input name="" value="Reset" type="button" class="reset_button" onClick="return formReset()"> </td>
</tr>
</table>
</div>
</form>
</div>
<div class="cl"></div></div>
<div class="cl"></div> </div>
<!--footer top start here-->
<?php include_once("inc/footer-top.php"); ?>
<!--footer top end here-->
</section>
<!--section end here-->
<!--footer start here-->
<?php include_once("inc/footer.php"); ?>
<!--footer end here-->
</body>
</html>