?
Current Path : /home1/savoy/public_html/savoyglobal.net/old_site/views/admin/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/old_site/views/admin/update_doubles.php |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <?php $this->load->view('admin/header'); ?> <body> <?php $this->load->view('admin/menu'); $this->load->view('admin/jsfunctions'); ?> <div class="container_12"> <!-- Example table --> <!-- Form elements --> <div class="grid_12"> <div class="module"> <h2><span>Update </span></h2> <div class="module-body"> <form id="validateform" class="formnew" action="<?=site_url();?>/admin/update_doubles/" method="post"> <p> <label>Company Name</label> <input type="hidden" name="registration_doubles_id" value="<?php echo $programs->registration_doubles_id; ?>" class="input-medium required" /> <input type="text" name="registration_doubles_company_name" value="<?php echo $programs->registration_doubles_company_name; ?>" id="registration_doubles_company_name" class="input-medium" /> </p> <p> <label>Player Name 1</label> <input type="text" name="registration_doubles_player_name_1" id="registration_doubles_player_name_1" value="<?php echo $programs->registration_doubles_player_name_1; ?>" class="input-medium" /> </p> <p> <label>Designation</label> <input type="text" name="registration_doubles_player_designation_1" id="registration_doubles_player_designation_1" value="<?php echo $programs->registration_doubles_player_designation_1; ?>" class="input-medium" /> </p> <p> <label>Qatar ID #</label> <input type="text" name="registration_doubles_qatar_id_1" id="registration_doubles_qatar_id_1" value="<?php echo $programs->registration_doubles_qatar_id_1; ?>" class="input-medium" /> </p> <p> <label>Contact #</label> <input type="text" name="registration_doubles_contact_no_1" id="registration_doubles_contact_no_1" value="<?php echo $programs->registration_doubles_contact_no_1; ?>" class="input-medium" /> </p> <p> <label>Email</label> <input type="text" name="registration_doubles_email_1" id="registration_doubles_email_1" value="<?php echo $programs->registration_doubles_email_1; ?>" class="input-medium" /> </p> <p> <label>Player Name 1</label> <input type="text" name="registration_doubles_player_name_2" id="registration_doubles_player_name_2" value="<?php echo $programs->registration_doubles_player_name_2; ?>" class="input-medium" /> </p> <p> <label>Designation</label> <input type="text" name="registration_doubles_designation_2" id="registration_doubles_designation_2" value="<?php echo $programs->registration_doubles_designation_2; ?>" class="input-medium" /> </p> <p> <label>Qatar ID #</label> <input type="text" name="registration_doubles_qatar_id_2" id="registration_doubles_qatar_id_2" value="<?php echo $programs->registration_doubles_qatar_id_2; ?>" class="input-medium" /> </p> <p> <label>Contact #</label> <input type="text" name="registration_doubles_contact_no_2" id="registration_doubles_contact_no_2" value="<?php echo $programs->registration_doubles_contact_no_2; ?>" class="input-medium" /> </p> <p> <label>Email</label> <input type="text" name="registration_doubles_email_2" id="registration_doubles_email_2" value="<?php echo $programs->registration_doubles_email_2; ?>" class="input-medium" /> </p> <p> <label>Status</label> <select name="active" id="active"> <option <?php if($programs->active==1) { echo "selected"; }?> value="1">Active</option> <option <?php if($programs->active==0) { echo "selected"; }?> value="0">Inactive</option> </select> </p> <fieldset> <input class="submit-green" type="submit" value="Submit" name="savep" onclick="addformdata('validateform')" /> </fieldset> </form> </div> <!-- End .module-body --> </div> <!-- End .module --> <div style="clear:both;"></div> </div> <!-- End .grid_12 --> <div style="clear:both;"></div> </div> <!-- End .container_12 --> <?php $this->load->view('admin/footer'); ?> </body> </html>