94 lines
4.2 KiB
PHP
94 lines
4.2 KiB
PHP
<?PHP
|
|
require_once "./admin/db/config.php";
|
|
$ref_id = $_GET['job'];
|
|
$selectCategory = $connection->query("SELECT * FROM `job_list_add` WHERE ref_id='$ref_id'");
|
|
if ($selectCategory) {
|
|
if($selectCategory->num_rows > 0){
|
|
$data = $selectCategory->fetch_object();
|
|
}
|
|
}
|
|
?>
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
|
|
<?PHP include './includes/links.php'; ?>
|
|
<link rel="canonical" href="<?php echo $BASE_URL; ?>/profile-upload">
|
|
<title>Tech4Biz Solutions - Excellence Guaranteed</title>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<?PHP include './includes/spinner.php'; ?>
|
|
|
|
<?PHP include './includes/header.php'; ?>
|
|
|
|
|
|
<div class="apply-verify pt-100 pb-100">
|
|
<div class="container position-relative">
|
|
<p class="job-type-id">You are applying for <span><?php echo $data->job_title;?></span></p>
|
|
<h2 class="candidate-title">RESUME UPLOAD</h2>
|
|
<p class="candidate-details">Please enter all relevant personal information in the fields below.</p>
|
|
</div>
|
|
<div class="container ">
|
|
<div class="contact-form">
|
|
<form autocomplete="off" id="resumeUpload" name="resumeUpload" method="post" action="" >
|
|
<h3>Upload Resume</h3>
|
|
<div class="form-group input-group mb-3" >
|
|
<input type="file" class="form-control" id="resume_file" name="resume_file">
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
<h3>Personal Information</h3>
|
|
<div class="row">
|
|
<!-- <input type="file" accept=".doc,.docx,.pdf,.jpg,.jpeg,.png" id="resume_file" name="resume_file" /> -->
|
|
<div class="col-lg-6">
|
|
<div class="form-group">
|
|
<label>First Name <span>*</span></label>
|
|
<input type="text" name="first_name" id="first_name" class="form-control" placeholder="First Name">
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="form-group">
|
|
<label>Last Name <span>*</span></label>
|
|
<input type="text" name="last_name" id="last_name" class="form-control" placeholder="Last Name">
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="form-group">
|
|
<label for="email">Email Address <span>*</span></label>
|
|
<input type="email" name="email" id="email" class="form-control" placeholder="Email Address">
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="form-group">
|
|
<label for="contact_number">Contact number <span>*</span></label>
|
|
<input type="number" name="contact_number" id="contact_number" class="form-control" placeholder="Contact number">
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="form-group">
|
|
<label for="location">Location <span>*</span></label>
|
|
<input type="text" name="location" id="location" class="form-control" placeholder="Location">
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-12 col-md-12 text-center">
|
|
<button type="submit" id="btnSaveResume" class="default-btn btn-bg-two">Submit</button>
|
|
</div>
|
|
<div id="msgSubmit" class="h3 text-center hidden"></div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?PHP include './includes/footer.php'; ?>
|
|
|
|
<?PHP include './includes/scripts.php'; ?>
|
|
</body>
|
|
</html>
|