fixed bugs from tracker date -12/09/2024 employee module Additional fix-2 - vadivel J

This commit is contained in:
vadivelJ96 2024-09-17 09:21:27 +05:30
parent f8f2ef3f65
commit e5934f2d7f

View File

@ -207,20 +207,22 @@ if (!empty($EmpDetails)) {
<div class="col-md-2"> <div class="col-md-2">
<div class="row"> <div class="form-row">
<div class="box-header"> <div class="box-header">
<img id="profilepicture" <img id="profilepicture"
src="<?php echo base_url() . $ProfilePic; ?>" alt="your image" src="<?php echo base_url() . $ProfilePic; ?>" alt="your image"
style="width: 139px;" /> style="width: 139px;" />
<br />
</div> </div>
</div> </div>
<div class="row"> <br/>
<div class="form-row">
<label for="photo">Select profile picture<br /><small>(only .jpg or <label for="photo">Select profile picture<br /><small>(only .jpg or
.png)</small> .png)</small>
@ -283,7 +285,7 @@ if (!empty($EmpDetails)) {
</div> </div>
<div class="col-md-4 pad"> <div class="col-md-4 pad">
<label>Father / Husband Name</lab><span class="badge">*</span> <label>Father / Husband Name</label><span class="badge">*</span>
<input type="text" name="FatherName" id="FatherName" <input type="text" name="FatherName" id="FatherName"
maxlength="200" value="<?php echo $FatherName; ?>" maxlength="200" value="<?php echo $FatherName; ?>"
placeholder="Father / Husband Name" class="form-control" placeholder="Father / Husband Name" class="form-control"
@ -340,7 +342,7 @@ if (!empty($EmpDetails)) {
</div> </div>
<div class="col-md-4 pad"> <div class="col-md-4 pad">
<label>Age</l><span class="badge">*</span> <label>Age</label><span class="badge">*</span>
<input type="text" name="age" placeholder="Age" id="age" <input type="text" name="age" placeholder="Age" id="age"
value="<?php echo $Age; ?>" class="form-control" readonly> value="<?php echo $Age; ?>" class="form-control" readonly>
</div> </div>
@ -1037,12 +1039,12 @@ if (!empty($EmpDetails)) {
} else { ?> } else { ?>
<div class="row"> <div class="row">
<div class="col-md-4"> <div class="col-md-4">
<span>File Name</span> <label>File Name</label>
<input type="text" id="file_name" name="file_name[]" <input type="text" id="file_name" name="file_name[]"
maxlength="255" class="form-control"> maxlength="255" class="form-control">
</div> </div>
<div class="col-md-4"> <div class="col-md-4">
<span>File</span> <label>File</label>
<input type="file" name="emp_file[]" class="form-control"> <input type="file" name="emp_file[]" class="form-control">
</div> </div>
<div class="col-md-4" style="margin-top: 23px;"> <div class="col-md-4" style="margin-top: 23px;">
@ -1096,6 +1098,7 @@ if (!empty($EmpDetails)) {
reader.readAsDataURL(input.files[0]); reader.readAsDataURL(input.files[0]);
$('#ModifyImage').val(input.files[0]['name']); $('#ModifyImage').val(input.files[0]['name']);
} }
} }