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 form-control-wrapper class="form-input-wrapper" error-handling="errorHandling">
<label class="full-width" for="text-{{name}}">
<span class='input-label-content' required-field is-required="ngRequired">
<span ng-if="preScreenReaderLabel" class="sr-only">{{preScreenReaderLabel}}</span>
<span name="{{name || label}}Label">{{label}}</span>
</span>
<span class='input-text-label-date' ng-show="showSecondaryLabel" responsive>{{secondaryLabel}}</span>
<span ng-if='maxlength !== null && maxlength !== undefined'
class='sr-only'>{{maxlength}} character maximum</span>
<span class="sr-only">{{placeholder}}</span>
</label>

<div class='input-text' >
<textarea ng-if="maxlength > 200"
name="{{name}}"
ng-required='ngRequired'
maxlength='{{maxlength}}'
ng-model='$parent.ngModel'
ng-change='update()'
class='form-control input-textarea-field'
ng-disabled='ngDisabled'
aria-disabled='{{ngDisabled}}'
ng-readonly="ngReadonly"
aria-readonly="{{ngReadonly}}"
cols='{{cols}}'
rows='{{rows}}'
ng-trim='false'
ng-attr-placeholder="{{placeholder}}"
autocapitalize="{{noCap}}"
id="text-{{name}}"
ios-keyboard></textarea>

<input ng-if="maxlength <= 200"
name="{{name}}"
type="text"
ng-required='ngRequired'
maxlength='{{maxlength}}'
ng-model='$parent.ngModel'
ng-change='update()'
class='form-control'
ng-disabled='ngDisabled'
aria-disabled='{{ngDisabled}}'
ng-readonly="ngReadonly"
aria-readonly="{{ngReadonly}}"
ng-trim='false'
ng-attr-placeholder="{{placeholder}}"
autocapitalize="{{noCap}}"
alphanumeric-only="onlyAlphanumeric"
id="text-{{name}}"
ng-pattern="patternRegex"
ios-keyboard />

<span ng-if='textAreaExtra' class='pull-left'><small>{{textAreaExtra}}</small></span>
<span ng-if='characterCounter' class='pull-right label character-counter'>{{charsLeft()}} character{{charsLeft() != 1 ? 's' : ''}} left</span>
</div>


</div>