?
Current Path : /home1/savoy/public_html/savoyglobal.net/piadraft/system/application/views/Settings/ |
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/piadraft/system/application/views/Settings/addfiscal.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <script type="text/javascript"> jQuery(document).ready(function () { $('.one').datepick({dateFormat: 'dd-mm-yyyy'}); $('.two').datepick({dateFormat: 'dd-mm-yyyy'}); }); </script> <style> #viewmain { padding:10px 0 0 50px; } #viewmain table tr { height:35px; } #viewmain table tr td label { color:#000; } </style> <div class="select-bar"> <label> <img src="<?=base_url()?>/assets/images/backbutton.png" title="Back" class="clickimage" onclick="showfiscal(1,'closed','')" alt="Back" align = "center" width="25" height="25" /></label> </div> <?php $attributes = array('id' => 'customForm'); echo form_open('',$attributes); ?> <fieldset> <legend>Add New Fiscal Year</legend> <div id="viewmain"> <table> <tr> <td> <label for="description"> Begin Date</label> </td> <td> <input class="one" readonly="readonly" id="startdate" name="startdate" /><span id="startdateInfo" class="red_bold">*</span> </td> </tr> <tr> <td> <label for="location"> End Date</label> </td> <td> <input class="two" readonly="readonly" id="enddate" name="enddate" /><span id="enddateInfo" class="red_bold">*</span> </td> </tr> <!-- <tr> <td> <label for="location"> Closed</label> </td> <td> <select id="close" name="close"> <option value="0">No</option> <option value="1">Yes</option> </select> </td> </tr> --> <input type="hidden" id="close" name="close" value="0"> <tr> <td> <br/><br/><br/> </td> </tr> <tr> <td> <button type="button" name="save_act" class="clickimage" onclick="return insert_fiscal()" id="save_act" value="save">Save</button> </td> </tr> </table></div> </fieldset> <?php echo form_close(); ?>