105 lines
4.4 KiB
PHP
Executable File
105 lines
4.4 KiB
PHP
Executable File
<style>
|
|
|
|
body {
|
|
.multiselect-native-select {
|
|
position: relative;
|
|
bottom: 32px;
|
|
select {
|
|
border: 0 !important;
|
|
clip: rect(0 0 0 0) !important;
|
|
height: 1px !important;
|
|
margin: -1px -1px -1px -3px !important;
|
|
overflow: hidden !important;
|
|
padding: 0 !important;
|
|
position: absolute !important;
|
|
width: 1px !important;
|
|
left: 50%;
|
|
top: 30px;
|
|
}
|
|
}
|
|
|
|
.multiselect-container{
|
|
width: 100% !important;
|
|
}
|
|
|
|
.multiselect-selected-text{
|
|
float: left !important;
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<style>
|
|
.btn-group, .btn-group-vertical {
|
|
position: relative;
|
|
top: 31px !important;
|
|
display: inline-flex;
|
|
vertical-align: middle;
|
|
}
|
|
</style>
|
|
|
|
<!-- start page title -->
|
|
|
|
<!-- ADD and EDIT Page HTML -->
|
|
<div class="row" id="Add-Edit-Page">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="row" style="padding-bottom: 10px;">
|
|
<div class="col-6" style="align-self: center;">
|
|
<h4 class="header-title" style="position: relative;"></h4>
|
|
</div>
|
|
<div class="col-6" style="text-align: right;">
|
|
<button type="button" class="btn btn-primary waves-effect waves-light btnBack">Back</button>
|
|
</div>
|
|
</div>
|
|
<form role="form" class="parsley-examples" method="post" id="UserForm" action="" enctype="multipart/form-data">
|
|
<input type="hidden" value="<?= csrf_hash() ?>" name="<?= csrf_token() ?>"/>
|
|
<input type="hidden" name="PrimaryKey" id="UserId"/>
|
|
<div class="form-group">
|
|
<div class="form-row">
|
|
<div class="form-group col-md-3">
|
|
<label for="emp_code">Employee Code</label>
|
|
<input type="text" class="form-control" id="emp_code" placeholder="Enter Employee Code" name="emp_code">
|
|
</div>
|
|
<div class="form-group col-md-3">
|
|
<label for="first_name">Name<span class="text-danger">*</span></label>
|
|
<input type="text" class="form-control" id="first_name" placeholder="Enter First Name" name="first_name" required>
|
|
</div>
|
|
<div class="form-group col-md-3">
|
|
<label for="email">Email<span class="text-danger">*</span></label>
|
|
<input type="text" class="form-control" id="email" placeholder="Enter Email" name="email" required>
|
|
</div>
|
|
<div class="form-group col-md-3">
|
|
<label for="mobile">Mobile Number<span class="text-danger">*</span></label>
|
|
<input type="text" class="form-control" id="mobile" placeholder="Enter Mobile Number" name="mobile" required>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-row">
|
|
<div class="form-group col-md-4">
|
|
<label for="emp_code">User Role</label>
|
|
<select class="form-control" id="role" name="role">
|
|
<option value="">Select Role</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group col-md-4">
|
|
<label for="profile">User Team</label>
|
|
<select class="form-control" id="team" name="team[]" multiple>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group text-right m-b-0">
|
|
<button type="submit" class="btn btn-primary waves-effect waves-light mr-1" id="btnSubmit">Submit</button>
|
|
<button type="button" class="btn btn-secondary waves-effect btnBack" id="btnBack">Cancel</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div> <!-- end card-box -->
|
|
</div> <!-- end col-->
|
|
</div>
|
|
<!-- end row--> |