Change account form validation for ahtorized overdraft.
This commit is contained in:
parent
6ff893a08d
commit
4064848242
@ -57,6 +57,8 @@
|
||||
"angular-resource": "^1.6",
|
||||
"angular-strap": "^2.3.12",
|
||||
"angular-ui-notification": "^0.3",
|
||||
"angular2-modal": "^3.0.1",
|
||||
"angular2-notifications": "^0.7.4",
|
||||
"base64util": "^1.0.2",
|
||||
"bootbox": "^4.4.0",
|
||||
"bootstrap": "^3.3.7",
|
||||
|
@ -34,13 +34,11 @@ import { Account } from './account';
|
||||
|
||||
<div class="col-sm-8">
|
||||
<div class="input-group">
|
||||
<div class="input-group-addon">-</div>
|
||||
|
||||
<input class="form-control"
|
||||
type="number" placeholder="Authorized overdraft"
|
||||
id="authorized-overdraft" name="authorized_overdraft"
|
||||
[(ngModel)]="account.authorized_overdraft" #authorizedOverdraft="ngModel"
|
||||
required min="0">
|
||||
required max="0">
|
||||
|
||||
<div class="input-group-addon">.00€</div>
|
||||
</div>
|
||||
@ -50,8 +48,8 @@ import { Account } from './account';
|
||||
The authorized overdraft is required.
|
||||
</p>
|
||||
|
||||
<p [hidden]="!authorizedOverdraft.errors.min">
|
||||
The authorized overdraft must be equal or greater than 0.
|
||||
<p [hidden]="!authorizedOverdraft.errors.max">
|
||||
The authorized overdraft must be less than or equal to 0.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user