mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-21 00:03:35 -05:00
18 lines
753 B
HTML
18 lines
753 B
HTML
<div class="col-sm-{{::col}}">
|
|
<div class="form-group at-u-flat">
|
|
<at-input-label state="state"></at-input-label>
|
|
<input type="text" class="form-control at-Input"
|
|
ng-class="{ 'at-Input--rejected': state.rejected }"
|
|
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 || form.disabled" />
|
|
|
|
<p ng-if="state.rejected && !state.isValid" class="at-InputMessage--rejected">
|
|
{{ state.message }}
|
|
</p>
|
|
</div>
|
|
</div>
|