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>{{label}}</span>
<span class="sr-only">{{placeholder}}</span>
</span>
</label>
<div class='input-number full-width'>
<input type="text"
name='{{name}}'
label='{{label}}'
ng-readonly="ngReadonly"
ng-required='ngRequired'
ng-model='ngModel'
ng-change='onChange()'
user-input-pattern='userPattern'
class='form-control input-number-field'
ng-disabled='ngDisabled'
placeholder="{{placeholder}}"
maxlength="{{maxlength}}"
ng-maxlength="maxlength"
numbers-only="onlyNumbers"
ng-trim="false"
id="text-{{name}}"
ios-keyboard/>
</div>
</div>