CV FORM

<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
padding: 20px;
}
form {
background: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
max-width: 600px;
margin: auto;
}
h2 {
color: #333;
border-bottom: 2px solid #007bff;
padding-bottom: 5px;
margin-bottom: 15px;
}
label {
font-weight: bold;
display: block;
margin-top: 10px;
}
input, textarea, select {
width: 100%;
padding: 10px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type=”radio”] {
width: auto;
}
table {
width: 100%;
margin-top: 10px;
border-collapse: collapse;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 8px;
text-align: left;
}
button {
background: #007bff;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
width: 100%;
}
button:hover {
background: #0056b3;
}
</style>

<form method=”post” enctype=”multipart/form-data”>
<h2>πŸ‘€ Personal Information</h2>
<label>Full Name:</label>
<input type=”text” name=”full_name” required>

<label>Applying for Job Role:</label>
<input type=”text” name=”job_role” required>

<label>Marital Status:</label>
<input type=”radio” name=”marital_status” value=”Single”> Single
<input type=”radio” name=”marital_status” value=”Married”> Married

<label>Number of Children:</label>
<input type=”number” name=”children” min=”0″>

<label>Address (As per CNIC):</label>
<textarea name=”address” required></textarea>

<label>Email:</label>
<input type=”email” name=”email” required>

<label>Contact Number:</label>
<input type=”tel” name=”contact_number” required>

<h2>πŸ“Έ Upload Picture</h2>
<input type=”file” name=”profile_picture” accept=”image/*” required>

<h2>πŸŽ“ Education</h2>
<table>
<tr>
<th>Year</th>
<th>Institute</th>
<th>Degree/Description</th>
</tr>
<tr>
<td><input type=”text” name=”education_year[]”></td>
<td><input type=”text” name=”education_institute[]”></td>
<td><input type=”text” name=”education_degree[]”></td>
</tr>
<tr>
<td><input type=”text” name=”education_year[]”></td>
<td><input type=”text” name=”education_institute[]”></td>
<td><input type=”text” name=”education_degree[]”></td>
</tr>
</table>

<h2>πŸ’Ό Work Experience</h2>
<table>
<tr>
<th>Job Title</th>
<th>Company Name</th>
<th>Started From</th>
<th>To</th>
</tr>
<tr>
<td><input type=”text” name=”job_title[]”></td>
<td><input type=”text” name=”company_name[]”></td>
<td><input type=”date” name=”started_from[]”></td>
<td><input type=”date” name=”to[]”></td>
</tr>
<tr>
<td><input type=”text” name=”job_title[]”></td>
<td><input type=”text” name=”company_name[]”></td>
<td><input type=”date” name=”started_from[]”></td>
<td><input type=”date” name=”to[]”></td>
</tr>
</table>

<h2>πŸ›  Skills</h2>
<input type=”text” name=”skills[]”>
<input type=”text” name=”skills[]”>
<input type=”text” name=”skills[]”>

<h2>πŸ“‚ Upload Documents</h2>
<label>Attach the following documents in PDF format:</label>
βœ… CV: <input type=”file” name=”cv” accept=”application/pdf” required>
βœ… Passport Scan (Front & Back): <input type=”file” name=”passport” accept=”application/pdf” required>
βœ… Last Educational Mark Sheet: <input type=”file” name=”education_doc” accept=”application/pdf” required>

<button type=”submit”>Submit</button>
</form>

Scroll to Top