Skip to content

Commit

Permalink
Made some changes in Services... KEEP THEM AS IT IS .... IT will be m…
Browse files Browse the repository at this point in the history
…ore correct when you will get SQL file
  • Loading branch information
KaushikOP committed Jul 17, 2021
1 parent c2d8622 commit 9dad3f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ <h1 class="mt-5 text-center bg-success p-2 col-auto" style="border-radius: 10px;
<thead>
<tr>
<th class="text-center">Service ID</th>
<th class="text-center">Service Name</th>
<th class="text-center">Service Description</th>
<th class="text-center">Service Name</th>
<th class="text-center">SAC</th>
<th class="text-center">Provider Firm Name</th>
<th>Action</th>
Expand All @@ -162,10 +162,10 @@ <h1 class="mt-5 text-center bg-success p-2 col-auto" style="border-radius: 10px;
<?php echo $row['serviceId']; ?>
</td>
<td style="width: 30%;">
<textarea style="width:100%;" id="<?php echo $row['serviceId'].'name'; ?>" type="text" disabled rows="2"><?php echo $row['serviceName']; ?></textarea>
<textarea style="width:100%;" id="<?php echo $row['serviceId'].'name'; ?>" type="text" disabled rows="2"><?php echo $row['serviceDescription']; ?></textarea>
</td>
<td style="width: 25%;">
<input style="width:100%;" id="<?php echo $row['serviceId'].'desc'; ?>" type="text" value="<?php echo $row['serviceDescription']; ?>" disabled>
<input style="width:100%;" id="<?php echo $row['serviceId'].'desc'; ?>" type="text" value="<?php echo $row['serviceName']; ?>" disabled>
</td>
<td style="width: 15%;" class="text-center">
<input style="width:100%;" id="<?php echo $row['serviceId'].'sac'; ?>" type="text" value="<?php echo $row['SAC']; ?>" disabled>
Expand Down

0 comments on commit 9dad3f3

Please sign in to comment.