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

<label for="{{fieldId}}">
<div>
<span class='input-label-content' required-field is-required="ngRequired"><span>{{label}}:</span></span>
<span class="sr-only">hh:mm AM/PM</span>
</div>
</label>
<div class="time-control" 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"
placeholder="HH:MM AM/PM"
ng-readonly="ngReadonly"
aria-readonly="{{ngReadonly}}"
ng-required="ngRequired"
ng-disabled="ngDisabled"
aria-disabled="{{ngDisabled}}"
maxlength="8"
ng-trim="false"
ios-keyboard/>
<span class="input-group-btn">
<button type="button"
class="btn btn-default"
ng-disabled="ngReadonly || ngDisabled"
accessible-time-picker
ng-model="ngModel"
increment="increment">
<span class="sr-only">This time selection control is not optimized for screen readers. Please directly enter the time in the text box provided. Open Time Picker</span>
<i class="icon icon-time" aria-hidden="true"></i>
</button>
</span>
</div>
</div>
</div>