?
Current Path : /home1/savoy/www/savoyglobal.net/drafthr/system/application/views/Policies/ |
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/www/savoyglobal.net/drafthr/system/application/views/Policies/addquickpolicynote.php |
<?php /* * To change this template, choose Tools | Templates * and open the template in the editor. */ ?> <script type="text/javascript"> jQuery(document).ready(function () { $('.one').datepick({dateFormat: 'dd-mm-yyyy'}); $('.two').datepick({dateFormat: 'dd-mm-yyyy'}); }); </script> <?php $attributes = array('id' => 'customForm','class'=>'endform'); echo form_open_multipart('',$attributes); ?> <fieldset> <legend>Add Policy No</legend> <?php $qref=$this->customermodel->getSingleFieldValue('placing_slip','quotation_ref','id',$polyid); ?> <input type="hidden" name="polyid" id="polyid" value="<?php echo $polyid; ?>"> <ul> <li> <label >Quotation Ref</label> <input type="text" name="qref" id="qref" value="<?php echo $qref; ?>" readonly> </li> <li> <label >Date</label> <input name="date" id="date" class="one" style="background-image: url(../../../../assets/images/datefocus.gif);" value="<?php echo date("d-m-Y");?>" readonly /> </li> <li> <?php $data1 = array( 'name' => 'policyno', 'id' => 'policyno', ); ?> <label for="country">Policy No</label> <?php echo form_input($data1).form_error($data1); ?> <span id="policynoInfo" class="red_bold">*</span> </li> <li> <label>Policy Received Date</label> <input name="recdate" class="two" id="recdate" style="background-image: url(../../../../assets/images/datefocus.gif);" value="<?php echo date("d-m-Y");?>" readonly /> </li> <li><label for="submit"> </label> <button type="button" id="button1" class="clickimage" onclick="addpolicynoteno()">Save</button> </li> </ul> </fieldset> <?php echo form_close();?>