55 lines
2.3 KiB
PHP
55 lines
2.3 KiB
PHP
<script>
|
|
|
|
</script>
|
|
<style>
|
|
#modal-add-job_profile {
|
|
overflow-y: scroll;
|
|
}
|
|
</style>
|
|
<div class="modal fade" id="modal-add-job_profile" name="modal-add-job_profile" role="dialog" aria-hidden="true">
|
|
<form role="form" id="job_profile_form" name="job_profile_form" action="#" method="post">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="widget-header">
|
|
<h5 class="widget-title">Appoinment Slot</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">Slot Start</label>
|
|
<input type="hidden" class="form-control" name="slot_id" id="slot_id" value=""
|
|
required />
|
|
<input type="time" class="form-control" name="slot" id="slot">
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="role">Slot End </label>
|
|
<input type="time" class="form-control" name="slot_end" id="slot_end">
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="role">No Of Appointments </label>
|
|
<input type="number" class="form-control" name="slot_count" id="slot_count">
|
|
|
|
</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> |