Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
<div class="primary-header">
<h2 primary-focus>Custom Text</h2>
<!--top buttons -->
<div class="top-btn">
<button id="top-save-btn" type="button" class="btn" ng-click="save($event)">Save</button>
</div>
</div>
<div class="manage-settings-content">
<form name="customMessagesForm" unsaved-warning-form novalidate="novalidate">
<h3>
<span id="custom-messages-institution-label">{{institution}} </span>
<span>Custom Text</span>
</h3>
<p>Customize the text below to provide information that is specific to this location and its clinics.</p>
<div validation-summary></div>
<fieldset>
<legend>
<h4 class="page-name">Location Display</h4>
</legend>
<div class="page">
<span required-field is-required="true" class="field-header">required field</span>
<fieldset>
<legend>
Site: {{institution}} ({{site}})
</legend>
<input-text ng-model="userFriendlyText"
name="namename"
label="Facility Location - Friendly Name"
rows="1"
maxlength="100"
ng-required="true">
</input-text>
<button id="friendly-name-restore-default" type="button" class="btn btn-default" ng-click="friendlyRestoreDefault($event, customMessages.siteCode)"
aria-label="Restore to default location button">Restore Default</button>
</fieldset>
</div>
</fieldset>
<div ng-repeat="customMessageGroup in groupedMessageDisplayArray">
<fieldset>
<legend>
<h4 class="page-name">{{customMessageGroup[0].page}}</h4>
</legend>
<div class="page" ng-repeat="customMessage in customMessageGroup">
<span required-field is-required="true" class="field-header">required field</span>
<fieldset>
<legend>Message {{$index + 1}}</legend>
<p>Field: {{customMessage.field}}</p>
<input-text ng-model="findMessage(customMessage.messageId).messageText" id="{{customMessage.messageId}}" maxlength="{{customMessage.maxLength}}" character-counter="true"
name="{{customMessage.messageId}}"
label="Display Text"
message-label="Message {{$index + 1}} Display Text"
ng-required="true"></input-text>
<button id="custom-message{{$index + 1}}-restore-default" type="button" class="btn btn-default" ng-click="restoreDefault($event, customMessage.messageId)"
aria-label="Restore Default Message {{$index + 1}}">Restore Default</button>
</fieldset>
</div>
</fieldset>
</div>
<!-- bottom buttons -->
<div class="bottom-btn">
<button id="custom-messages-bottom-save-btn" type="button" class="btn btn-primary" ng-click="save($event)">Save</button>
</div>
</form>
</div>