69 lines
4.1 KiB
PHP
69 lines
4.1 KiB
PHP
|
<div class="content-wrapper">
|
||
|
|
||
|
<div class="content">
|
||
|
<div class="container-fluid">
|
||
|
<div class="row">
|
||
|
<div class="col">
|
||
|
<div class="card card-primary card-outline">
|
||
|
<div class="card-header">
|
||
|
<h5 class="m-0">Create <?php echo $pageTitle; ?>
|
||
|
<?php showListButton($this->uri->segment(1) . "/" . $this->uri->segment(2) . "/list","List ".$pageTitle); ?></h5>
|
||
|
</div>
|
||
|
<div class="card-body">
|
||
|
<form method=POST action="" enctype="multipart/form-data" name="tbl_fiscalyear">
|
||
|
<div class="row">
|
||
|
<!--COL START-->
|
||
|
<div class="col-6">
|
||
|
<div class="form-group">
|
||
|
<label for="fiscalyear_year">Fiscalyear Year</label><input type="text" class="form-control" id="fiscalyear_year" value="" name="fiscalyear_year">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="col-6">
|
||
|
<div class="form-group">
|
||
|
<label for="fiscalyear_code">Fiscalyear Code</label><input type="text" class="form-control" id="fiscalyear_code" value="" name="fiscalyear_code">
|
||
|
</div>
|
||
|
</div>
|
||
|
<!--COL END-->
|
||
|
|
||
|
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<!--COL START-->
|
||
|
<div class="col-6">
|
||
|
<div class="form-group">
|
||
|
<label for="fiscalyear_from"> From</label>
|
||
|
<input type="text" class="form-control nepaliDatePicker" id="fiscalyear_from" value="" name="fiscalyear_from">
|
||
|
<!-- <input type="date" class="form-control" id="fiscalyear_from" value="" name="fiscalyear_from"> -->
|
||
|
</div>
|
||
|
</div>
|
||
|
<!--COL END-->
|
||
|
|
||
|
<!--COL START-->
|
||
|
<div class="col-6">
|
||
|
<div class="form-group">
|
||
|
<label for="fiscalyear_to">To</label>
|
||
|
<input type="text" class="form-control nepaliDatePicker" id="fiscalyear_to" value="" name="fiscalyear_to">
|
||
|
<!-- <input type="date" class="form-control" id="fiscalyear_to" value="" name="fiscalyear_to"> -->
|
||
|
</div>
|
||
|
</div>
|
||
|
<!--COL END-->
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<!--COL START-->
|
||
|
<div class="col">
|
||
|
<div class="form-group"> <label for="remarks">Remarks</label>
|
||
|
<textarea class="form-control" id="remarks" name="remarks"></textarea>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!--COL END-->
|
||
|
</div>
|
||
|
<button type="reset" class="btn btn-default btn-sm">Reset</button> <button class="btn btn-primary btn-sm" type="submit" name="submit">Save</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|