Skip to content

Commit

Permalink
changed location of name, city, state, etc to be right below organiza…
Browse files Browse the repository at this point in the history
…tion text at top of POC modal
  • Loading branch information
regulator95 committed Oct 19, 2018
1 parent 8b19dbb commit f5458cf
Showing 1 changed file with 47 additions and 46 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,52 @@ <h4 ng-if="!poc.primaryContact" class="modal-title">Secondary</h4> -->
</tbody></table>
</td>
</tr>
<tr>
<td>
<table>
<tbody><tr>
<td class="cellLabel" valign="top">
<label for="firstName">First Name</label>
</td>
<td valign="top">
<input type="text" ng-model="poc.firstName" size="15" value="" id="firstName">
</td>
<td class="cellLabel" valign="top">
<label for="middleInitial">Middle Initial</label>
</td>
<td valign="top">
<input type="text" ng-model="poc.middleInitial" size="5" value="" id="middleInitial">
</td>
<td class="cellLabel" valign="top">
<label for="lastName">Last Name</label>
</td>
<td valign="top">
<input type="text" ng-model="poc.lastName" size="15" id="lastName">
</td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td>
<table>
<tbody><tr>
<td class="cellLabel" valign="top">
<label for="phoneNumber">Phone Number</label>
</td>
<td valign="top">
<input type="text" ng-model="poc.phoneNumber" size="30" id="phoneNumber">
</td>
<td class="cellLabel" valign="top">
<label for="email">Email</label>
</td>
<td valign="top" colspan="4">
<input type="text" ng-model="poc.email" size="30" id="email">
</td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td>
<table>
Expand Down Expand Up @@ -122,52 +168,7 @@ <h4 ng-if="!poc.primaryContact" class="modal-title">Secondary</h4> -->
</tbody></table>
</td>
</tr>
<tr>
<td>
<table>
<tbody><tr>
<td class="cellLabel" valign="top">
<label for="firstName">First Name</label>
</td>
<td valign="top">
<input type="text" ng-model="poc.firstName" size="15" value="" id="firstName">
</td>
<td class="cellLabel" valign="top">
<label for="middleInitial">Middle Initial</label>
</td>
<td valign="top">
<input type="text" ng-model="poc.middleInitial" size="5" value="" id="middleInitial">
</td>
<td class="cellLabel" valign="top">
<label for="lastName">Last Name</label>
</td>
<td valign="top">
<input type="text" ng-model="poc.lastName" size="15" id="lastName">
</td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td>
<table>
<tbody><tr>
<td class="cellLabel" valign="top">
<label for="phoneNumber">Phone Number</label>
</td>
<td valign="top">
<input type="text" ng-model="poc.phoneNumber" size="30" id="phoneNumber">
</td>
<td class="cellLabel" valign="top">
<label for="email">Email</label>
</td>
<td valign="top" colspan="4">
<input type="text" ng-model="poc.email" size="30" id="email">
</td>
</tr>
</tbody></table>
</td>
</tr>

</tbody></table>
</fieldset>
</div>
Expand Down

0 comments on commit f5458cf

Please sign in to comment.