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>
<label class="input-group-checkbox-label">
<span class='input-group-checkbox-legend' required-field is-required="ngRequired">{{label}}</span>
</label>
<div ng-form class='input-group-checkbox'>
<div ng-repeat='checkboxModel in ngModel'>
<label>
<input type='checkbox'
id='{{name}}'
name='{{name + "-option"}}'
ng-model='checkboxModel.selected'
aria-checked='{{checkboxModel.selected || false}}'
ng-disabled='ngDisabled'
ng-change='onChange(checkboxModel)'>
<span class='input-group-checkbox-label-content'>{{checkboxModel.label}}</span>
</input>
</label>
</div>
</div>
</div>