Lines Matching full:form

10   <form name="form">
17 ng-class="{'notification-banner--warning': !form.lock.$dirty,
18 'notification-banner--information': form.lock.$dirty}">
19 <icon file="icon-warning.svg" aria-hidden="true" ng-if="!form.lock.$dirty"></icon>
20 <p class="notification-banner__text" ng-if="!form.lock.$dirty">Account locked</p>
21 … <p class="notification-banner__text" ng-if="form.lock.$dirty">Click "Save" to unlock account</p>
32 ng-click="form.lock.$setDirty()"
33 ng-disabled="form.lock.$dirty">Unlock</button>
74 … <div ng-if="form.username.$invalid && form.username.$touched" class="form__validation-message">
75 <span ng-show="form.username.$error.required">
77 <span ng-show="form.username.$error.minlength || form.username.$error.maxlength">
79 <span ng-show="form.username.$error.pattern">
81 <span ng-show="form.username.$error.duplicateUsername">
117 … ng-required="modalCtrl.user.new || form.password.$touched || form.passwordConfirm.$touched"
120 ng-click="form.password.$setTouched()"
123 form.password.$touched ||
124 form.passwordConfirm.$touched) ? '' : '******'}}"/>
125 … <div ng-if="form.password.$invalid && form.password.$dirty" class="form__validation-message">
126 <span ng-show="form.password.$error.required">
128 <span ng-show="form.password.$error.minlength || form.password.$error.maxlength">
139 … ng-required="modalCtrl.user.new || form.password.$touched || form.passwordConfirm.$touched"
143 first-password="form.password.$modelValue"
144 ng-click="form.passwordConfirm.$setTouched()"
147 form.password.$touched ||
148 form.passwordConfirm.$touched) ? '' : '******'}}"/>
149 …<div ng-if="form.passwordConfirm.$invalid && form.passwordConfirm.$dirty" class="form__validation-…
150 <span ng-show="form.passwordConfirm.$error.required">
152 <span ng-show="form.passwordConfirm.$error.passwordConfirm"
153 ng-hide="form.passwordConfirm.$error.required">
155 … <span ng-show="form.passwordConfirm.$error.minlength || form.passwordConfirm.$error.maxlength">
168 ng-click="$close(form)"
169 ng-disabled="form.$invalid || form.$pristine"
170 ng-class="{'disabled': form.$invalid}">
174 </form>