Untitled
unknown
plain_text
2 years ago
9.2 kB
5
Indexable
{% load static %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Mentor Consent Form</title> </head> <body> <div style="text-align:right;"> <img src="{% static 'assets/images/BITS_logo.gif' %}" alt="BITS Pilani logo" width=200> </div> <br> <div class="text-center"> <h1 id="header">Mentor Consent Form</h1> </div> <div class="card"> <div class="card-body"> <p class="card-text stud_form"> I am aware that Mr./ Ms.<span class="underline">{{ data.application.full_name }}</span> has applied for the BITS Pilani <span class="underline">{{ data.application.program }}</span> for working professionals. I am aware that my name has been suggested as Mentor by Mr./ Ms.<span class="underline">{{ data.application.full_name }}</span>. I have gone through the Information for Mentor given below and I am willing to take up this assignment and discharge all responsibilities required thereof. </p> <ul> <li>Name of Mentor: <span class="underline">{{ data.mentor_name }}</span></li> <li>Mentor Qualification: <span class="underline">{{ data.mentor_quallfication }}</span></li> <li>University: <span class="underline">{{ data.university }}</span></li> <li>Specialization/Branch: <span class="underline">{{ data.branch }}</span></li> <li>Designation of Mentor: <span class="underline">{{ data.mentor_designation }}</span></li> <li>Name of Organization: <span class="underline">{{ data.organization }}</span></li> <li>Mentor's Total Work Experience: <span class="underline">{{ twe.year }}</span> Years <span class="underline">{{ twe.month }}</span> Months (as on application deadline)</li> <li>Mentor's Total Work Experience in current organization: <span class="underline">{{ tweco.year }}</span> Years <span class="underline">{{ tweco.month }}</span> Months (as on application deadline)</li> <li>Mentor's address (in capital Letters): <span class="underline">{{ data.mentor_address }}</span></li> <li>Address: <span class="underline">{{ data.address }}</span></li> <li>City: <span class="underline">{{ data.city }}</span></li> <li>State: <span class="underline">{{ data.state }}</span></li> <li>Mentor's email address: <span class="underline">{{ data.mentor_email }}</span></li> <li>Mentor's contact phone no: <span class="underline">{{ data.mentor_phone }}</span></li> </ul> <h5 class="underline">INFORMATION FOR MENTOR</h5> The salient features of the Mentor's role are summarized below. <ol start="1"> <li> Each course conducted with a deadline specified for completion of study of a topic based on the syllabus of the course. Mentor is expected to monitor that the candidate is adhering to the specified study schedule. </li> <li> Each course will have certain evaluation components with specific deadlines. Mentor should again ensure whether the candidate is adhering to these deadlines. </li> <li> To ensure a good relationship between the course and the work of the employee, Mentor may identify study assignments based on the work allocated to the candidate apart from conducting seminars / viva and giving an objective opinion about the progress of the candidate in these components. </li> <br> <div style="padding:40px; text-align:right;"> <img src="{% static 'assets/images/BITS_logo.gif' %}" alt="BITS Pilani logo" width=200> </div> <li> The Mentor will interact with the student at least thrice a week on mutually agreed days. The Mentor will periodically inform the Dean concerned at BITS Pilani regarding the candidate's progress. </li> <li> During interaction, the Mentor will emphasize self-study and self-learning aspects of the educational process. </li> </ol> <br> <p>Sincerely,</p> <p>Name of Mentor <span class="underline">{{ data.mentor_sign }}</span></p> </div> </div> <style> .card { padding: 5px; } .text-center { text-align: center; font-weight: bold; text-decoration: underline; font-size: larger; } .card { font-size: 135%; } .hr-info { line-height: 1.3; } .underline { text-decoration: underline; } ul { line-height: 0%; } </style> </body> </html> {% load static %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Employer Consent Form</title> </head> <body> <div style="text-align:right;"> <img src="{% static 'assets/images/BITS_logo.gif' %}" alt="BITS Pilani logo" width=200> </div> <br> <div class="text-center"> <h1 id="header">Employer Consent Form</h1> </div> <div class="card"> <div class="card-body"> <p class="card-text stud_form"> This is to certify that Mr./ Ms.<span class="underline">{{ data.application.full_name }}</span>, with <span class="underline">{{data.stu_emp_id}}</span> is presently working with <span class="underline">{{data.company_name}}</span>, and has been employed with the organization since <span class="underline">{{data.joining_date}}</span>. We are aware that Mr./ Ms.<span class="underline">{{ data.application.full_name }}</span> has applied for the BITS Pilani. <span class="underline">{{ data.application.program }}</span> for working professionals. <br> <br> This is to certify that our organization supports and willingly participates in this cooperative effort for conducting the work-integrated learning programme. We feel that this programme will be useful to the employees for their growth and also for our organization. <br> <br> We are willing to participate in this educational process also by nominating a qualified senior professional from our organization /associate organization who will agree to act as a mentor and resource person for strengthening work-study integration. In case we are unable to provide mentor from our organization /associate organization, we in principle approve the selection of mentor from another organization as per the requirements of BITS Pilani. <br> <br> <br> Regards, <br> <br> Name of HR Representative: <span>{{ data.hr_sign }}</span><br> Designation & Department: <span>{{ data.designation }}</span> & <span>{{ data.department }}</span><br> Employee ID & Location: <span>{{ data.employee_id }}</span> & <span>{{ data.location }}</span> </p> </div> </div> <style> .card { padding: 35px; } .text-center { text-align: center; font-weight: bold; text-decoration: underline; font-size: larger; } .card { font-size: 135%; } .hr-info { line-height: 1.3; } .underline { text-decoration: underline; } </style> </body> </html>
Editor is loading...
Leave a Comment