mirror of
https://github.com/ansible/awx.git
synced 2026-02-04 02:58:13 -03:30
* The non-refactored credentials code has been returned to its original location. Inventories and Jobs pull in Credentials based on its original location in the file structure. * Apply margin to individual inputs instead of panels to have consistent spacing at more narrow resolutions. * Add placeholder for a Lookup component which will be necessary to let users select an org for the credential.
25 lines
948 B
HTML
25 lines
948 B
HTML
<div class="col-sm-{{::col}} at-InputContainer">
|
|
<div class="form-group at-u-flat">
|
|
<at-input-label></at-input-label>
|
|
|
|
<div class="input-group">
|
|
<span class="input-group-btn">
|
|
<button class="btn at-ButtonHollow--white at-Input-button"
|
|
ng-disabled="state._disabled || form.disabled">
|
|
<i class="fa fa-search"></i>
|
|
</button>
|
|
</span>
|
|
<input type="text"
|
|
class="form-control at-Input"
|
|
ng-class="{ 'at-Input--rejected': state.rejected }"
|
|
ng-model="state._value"
|
|
ng-attr-tabindex="{{ tab || undefined }}"
|
|
ng-attr-placeholder="{{::state._placeholder || undefined }}"
|
|
ng-change="vm.check()"
|
|
ng-disabled="state._disabled || form.disabled" />
|
|
</div>
|
|
|
|
<at-input-message></at-input-message>
|
|
</div>
|
|
</div>
|