bbone/application/modules/Asset/views/asset_usage_form.php
2022-12-26 14:03:09 +05:30

48 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel2">Edit Asset Usage</h4>
<button type="button" id="close-form" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="x_content">
<br />
<form class="form-label-left input_mask">
<div class="form-group row">
<label class="col-form-label col-md-3 col-sm-3 "> Date From</label>
<div class="col-md-9 col-sm-9 ">
<input type="text" class="form-control" name="date_from" >
</div>
</div>
<div class="form-group row">
<label class="col-form-label col-md-3 col-sm-3 ">Date To</label>
<div class="col-md-9 col-sm-9 ">
<input type="text" class="form-control" name="date_to" >
</div>
</div>
<div class="form-group row">
<label class="col-form-label col-md-3 col-sm-3 ">Quater</label>
<div class="col-md-9 col-sm-9 ">
<input type="text" class="form-control" name="quater" >
</div>
</div>
<div class="form-group row">
<label class="col-form-label col-md-3 col-sm-3 ">Shift</label>
<div class="col-md-9 col-sm-9 ">
<input type="text" class="form-control" name="shift" >
</div>
</div>
</form>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" id="close-form">Close</button>
<button type="button" class="btn btn-primary">Update</button>
</div>
</div>
</div>