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

<span class='input-label-content'>
<span ng-if="labelIcon.left"
role="{{labelIcon.left.onClick ? 'button' : ''}}"
class="btn btn-icon"
aria-label="{{labelIcon.left.iconLabel}}"
title="{{labelIcon.left.iconLabel}}"
ng-click="labelIcon.left.onClick()"
tabindex="0">
<i class="icon {{labelIcon.left.icon}}" tabindex="-1" aria-hidden="true"></i>
</span>
<label for="{{fieldId}}" required-field is-required="ngRequired" aria-label="{{label}}" ng-class="{'bold-text' : !isSubLabel}">{{label}}: <span class="sr-only">{{dateLabel}}</span></label>
<span ng-if="labelIcon.right"
role="{{labelIcon.right.onClick ? 'button' : ''}}"
class="btn btn-icon"
aria-label="{{labelIcon.right.iconLabel}}"
title="{{labelIcon.right.iconLabel}}"
ng-click="labelIcon.right.onClick()"
tabindex="0">
<i class="icon {{labelIcon.right.icon}}" tabindex="-1" aria-hidden="true"></i>
</span>
</span>

<div name="{{fieldId}}" class="date-control margin-right" form-control-wrapper error-handling="errorHandling">
<div class="full-width">
<div class="input-group">
<input type="text"
name="{{fieldId}}"
id="{{fieldId}}"
ng-model="ngModel"
ng-change="onChange()"
ng-keydown="onKeydown($event)"
class="form-control date-input"
ng-focus="isFocused = true"
ng-blur="isFocused = false"
placeholder="{{isFocused ? '' : disableMonthSelection ? 'YYYY' : (disableDaySelection ? 'MM/YYYY' : 'MM/DD/YYYY')}}"
maxlength="10"
ng-disabled="ngDisabled"
aria-disabled="{{ngDisabled}}"
ng-readonly="ngReadonly"
aria-readonly="{{ngReadonly}}"
ng-required="ngRequired"
ng-trim="false"
ios-keyboard
tabindex="0" />
<span class="input-group-btn" tabindex="-1" aria-hidden="true">
<button type="button"
tabindex="-1"
aria-hidden="true"
class="btn btn-default"
ng-click="openCalendarPopup($event)"
ng-disabled="ngReadonly || ngDisabled"
>
<i class="icon icon-calendar" tabindex="-1"></i>
<span class="sr-only" tabindex="-1">This calendar control is not optimized for screen readers. Please directly enter dates in the text box provided. Open Calendar Control.</span>
</button>
</span>
</div>
</div>
</div>

<span ng-if="!hideDay && ngModel && getDayOfWeek()" aria-label="Day selected is {{getDayOfWeek()}}">
<span tabindex="-1" aria-hidden="true">{{getDayOfWeek()}}</span>
</span>