EVOLUTION-NINJA
Edit File: resign.php
<link rel="stylesheet" href="<?php echo base_url('admin_assets/assets/font-awesome/4.5.0/css/font-awesome.min.css');?>" /> <script type="text/javascript" src="<?php echo base_url('admin_assets/js/jquery.min.js');?>"></script> <html> <head> <title>to whomsover it may concern</title> </head> <body id="print_div"> <div style="width: 800px;float: left;"> <div class="row_1" style="border-bottom: 1px solid #000;padding-bottom:5px;margin-bottom: 50px;"> <img src="<?php echo base_url('admin_assets/logo.png');?>"> </div> <p style="font-size: 16px;"><?php echo date("jS F Y");?></p> <h4 style="font-size: 20px;">TO WHOMSOVER IT MAY CONCERN</h4> <br> <p style="padding-bottom:10px;line-height:1.6;font-size: 18px;">This is to certify that <strong style="font-size: 25px;"><?php echo $releaving_result->first_name;?> <?php echo $releaving_result->last_name;?></strong> was in the employment of our Organization - <strong style="font-size: 22px;">Jayblues Technologies,</strong> from <?php echo date("jS F Y", strtotime($releaving_result->date_of_joining)); ?> till <?php if($releaving_result->date_of_exit!=''){ echo date("jS F Y", strtotime($releaving_result->date_of_exit)); }?>, working as a <strong style="font-size: 22px;"><?php echo $releaving_result->role_name; ?>.</strong></p> <p style="padding-bottom:10px;line-height:1.6;font-size: 18px;"><?php if($releaving_result->gender=='Male'){ echo 'He'; }else { echo 'She'; } ?> has been relieved from all services of <strong style="font-size: 22px;">Jayblues</strong> on the close of working hours on <?php if($releaving_result->date_of_exit!=''){ echo date("d-m-Y", strtotime($releaving_result->date_of_exit)); } ?>.</p> <p style="padding-bottom:10px;line-height:1.6;font-size: 18px;">During <?php if($releaving_result->gender=='Male'){ echo 'his'; }else { echo 'her'; } ?> tenure with us, we found <?php if($releaving_result->gender=='Male'){ echo 'him'; }else { echo 'her'; } ?> to be dedicated and <?php if($releaving_result->gender=='Male'){ echo 'his'; }else { echo 'her'; } ?> services were found to be satisfactory.</p> <p style="padding-bottom:10px;line-height:1.6;font-size: 18px;">We wish <?php if($releaving_result->gender=='Male'){ echo 'him'; }else { echo 'her'; } ?> all the best in <?php if($releaving_result->gender=='Male'){ echo 'his'; }else { echo 'her'; } ?> future endeavors.</p> <br> <br> <p style="line-height:1.6;font-size: 16px;">Ajay Kumar H S <br>CEO <br>Jay Blues Technologies</p> <button type="submit" style="align:center" onclick="print_resign()" class="btn btn-primary firstname">Print</button> </div> <div style="width:100px; float:left;padding-left: 30px;padding-top: 30px;"> <a href="<?php echo site_url('employee-list');?>" style="color:blue;"><i class="fa fa-long-arrow-left fa-2x arro_w"></i></a> </div> </body> </html> <script> function print_resign() { $('.firstname').hide(); var divToPrint=document.getElementById('print_div'); newWin= window.open(""); newWin.document.write(divToPrint.outerHTML); newWin.print(); document.getElementById('print_div').style.display=''; newWin.close(); } </script>