ESH/form/add_food_handler_canteen_location.php
2024-10-23 18:28:06 +05:30

48 lines
1.8 KiB
PHP

<style>
#modal-add-canteen_location {
overflow-y: scroll;
}
</style>
<div class="modal fade" id="modal-add-canteen_location" name="modal-add-canteen_location" role="dialog" aria-hidden="true">
<form role="form" id="canteen_location_form" name="canteen_location_form" action="#" method="post">
<div class="modal-dialog">
<div class="modal-content">
<div class="widget-header">
<h5 class="widget-title">Canteen location</h5>
<div class="widget-toolbar">
<div class="widget-menu">
<a href="#" class="close" data-action="close" data-dismiss="modal">
<i class="ace-icon fa fa-times"></i>
</a>
</div>
</div>
</div>
<div class="modal-body">
<div class="form-group">
<label for="role">Canteen Location</label>
<input type="hidden" class="form-control" name="canteen_id" id="canteen_id" />
<input type="text" name="canteen_location" class="form-control" id="canteen_location">
</div>
<div class="form-group">
<label for="role">Type</label>
<select style="font-size: medium;" name="type" class="form-control" id="type">
<option value="canteen">Canteen</option>
<option value="kitchen">Kitchen</option>
</select>
</div>
<div class="form-group">
<label for="role">Canteen Code</label>
<input type="text" name="canteen_code" class="form-control" id="canteen_code">
</div>
<div class="widget-toolbox padding-8 clearfix">
<button type="button" class="btn btn-info btn-sm save_button" onclick="validate();"><i class="ace-icon fa fa-floppy-o bigger-110"></i>Save </button>
<button type="button" class="btn btn-danger btn-sm" data-dismiss="modal"><i class="ace-icon fa fa-times bigger-110"></i>Cancel</button>
</div>
</div>
</div>
</form>
</div>