Skip to content

Commit

Permalink
Minor textual changes on General Config
Browse files Browse the repository at this point in the history
  • Loading branch information
amitdugar committed Oct 6, 2017
1 parent eedb3e6 commit 6225efe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions addInstanceDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@
<div class="box">
<table class="table" cellpadding="1" cellspacing="3" style="margin-left:1%;margin-top:20px;width: 98%;">
<tr>
<td style=""><b>Instance Name&nbsp;<span class="mandatory">*</span></b> <br>
<td style=""><b>Instance/Facility Name&nbsp;<span class="mandatory">*</span></b> <br>
</td>
<td>
<input type="text" class="form-control isRequired" name="fName" id="fName" title="Please enter instance name" placeholder="Instance/Facility Name"/>
</td>
<td>&nbsp;<b>Instance Code/ID&nbsp;</b></td>
<td>&nbsp;<b>Instance/Facility ID&nbsp;</b></td>
<td>
<input type="text" class="form-control " id="fCode" name="fCode" placeholder="Instance/Facility Code" title="Please enter facility code"/>
</td>
</tr>
<tr>
<td style=""><b>Instance Type&nbsp;<span class="mandatory">*</span></b></td>
<td style=""><b>Instance/Facility Type&nbsp;<span class="mandatory">*</span></b></td>
<td>
<select class="form-control isRequired" id="fType" name="fType" title="Please choose instance type">
<option value="">-- Select --</option>
Expand Down
10 changes: 5 additions & 5 deletions global-config/editGlobalConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,23 +64,23 @@
<div class="row">
<div class="col-md-7">
<div class="form-group">
<label for="fName" class="col-lg-4 control-label">Instance Name <span class="mandatory">*</span></label>
<label for="fName" class="col-lg-4 control-label">Instance/Facility Name <span class="mandatory">*</span></label>
<div class="col-lg-8">
<input type="text" class="form-control isRequired" name="fName" id="fName" title="Please enter instance name" placeholder="instance Name" value="<?php echo $instanceResult[0]['instance_facility_name'];?>"/>
<input type="text" class="form-control isRequired" name="fName" id="fName" title="Please enter instance name" placeholder="Facility/Instance Name" value="<?php echo $instanceResult[0]['instance_facility_name'];?>"/>
</div>
</div>
</div>
<div class="col-md-7">
<div class="form-group">
<label for="fCode" class="col-lg-4 control-label">Facility Code </label>
<label for="fCode" class="col-lg-4 control-label">Instance/Facility Code </label>
<div class="col-lg-8">
<input type="text" class="form-control " id="fCode" name="fCode" placeholder="Facility Code" title="Please enter facility code" value="<?php echo $instanceResult[0]['instance_facility_code'];?>"/>
<input type="text" class="form-control " id="fCode" name="fCode" placeholder="Facility Code" title="Please enter instance/facility code" value="<?php echo $instanceResult[0]['instance_facility_code'];?>"/>
</div>
</div>
</div>
<div class="col-md-7">
<div class="form-group">
<label for="instance_type" class="col-lg-4 control-label">Instance Type <span class="mandatory">*</span></label>
<label for="instance_type" class="col-lg-4 control-label">Instance/Facility Type <span class="mandatory">*</span></label>
<div class="col-lg-8">
<select class="form-control isRequired" name="instance_type" id="instance_type" title="Please select the instance type">
<option value="Viral Load Lab" <?php echo ('Viral Load Lab'==$arr['instance_type'])?"selected='selected'":""?>>Viral Load Lab</option>
Expand Down

0 comments on commit 6225efe

Please sign in to comment.