awx/awx/ui/client/lib/components/input/secret.partial.html
2017-06-12 09:53:11 -04:00

18 lines
805 B
HTML

<div class="col-sm-{{::col}}">
<div class="form-group at-u-flat">
<at-input-label state="state"></at-input-label>
<div class="input-group">
<span class="input-group-btn">
<button class="btn at-ButtonHollow--white at-Input-button" ng-click="vm.toggle()">
{{ buttonText }}
</button>
</span>
<input type="{{ type }}" class="form-control at-Input" ng-model="state.value"
ng-attr-maxlength="{{ state.options.max_length || undefined }}"
ng-attr-tabindex="{{ tab || undefined }}"
ng-attr-placeholder="{{::state.placeholder || undefined }}"
ng-change="vm.check()" ng-disabled="state.disabled" />
</div>
</div>
</div>