87 lines
2.9 KiB
PHP
87 lines
2.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>GHCL Foundation Form</title>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
|
<style>
|
|
* {
|
|
font-family: Rajdhani, sans-serif;
|
|
}
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 20px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
.container {
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
margin: 0 auto;
|
|
max-width: 800px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
}
|
|
.title {
|
|
font-size: 24px;
|
|
margin: 20px 0;
|
|
}
|
|
.content {
|
|
font-size: 18px;
|
|
line-height: 1.6;
|
|
}
|
|
.content ul {
|
|
list-style: disc;
|
|
margin-left: 20px;
|
|
}
|
|
.content .signature {
|
|
margin-top: 40px;
|
|
}
|
|
.content .signature div {
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container" id="opd_form_div">
|
|
<form id="opd_form" name="opd_form">
|
|
<h1>GHCL FOUNDATION</h1>
|
|
<h2>GHCL Foundation Trust<br>Vocational Training Center</h2>
|
|
|
|
<div class="title">Consent Form</div>
|
|
<div class="content">
|
|
<p>Date: <span>__________</span></p>
|
|
<p>Your Name: <span>____________________________</span> Residency: All terms and conditions apply, and your Aadhar number is not mandatory.</p>
|
|
<p>Conducted VYID: <span>___________________________</span> Number: <span>__________</span> If I am arrested, I have worked positively with <span>________________</span></p>
|
|
<p>I agree to pay the fee as per the institution's policy, and if I need to leave or acquire any land or other property, I will follow the necessary regulations.</p>
|
|
<p>Rules:</p>
|
|
<ul>
|
|
<li>I will stay for up to 4:00 hours as per the institution's time. I will adhere to the training policy.</li>
|
|
<li>If I arrive late after the training time, I will wash my hands thoroughly as required.</li>
|
|
<li>I will comply with all the institution's legal rules.</li>
|
|
<li>I will not cause any legal deviations from the guided path.</li>
|
|
<li>I will resolve all issues legally.</li>
|
|
</ul>
|
|
<div class="signature">
|
|
<div>Participant's Signature: ________________________</div>
|
|
<div>Guardian's Signature: ________________________</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<form id="employeeDetailsFormPdf" action="" method="POST">
|
|
<input type="hidden" name="htmlText" id="htmlText" />
|
|
</form>
|
|
</div>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$("#htmlText").val($("#opd_form").html());
|
|
document.forms['employeeDetailsFormPdf'].action = "generate_pdf.php";
|
|
$("#employeeDetailsFormPdf").submit();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|