aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/forms/form-validators/login.ts
blob: f37f8d2853a38ffc8999adc8b61d10c6b4cfb549 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Validators } from '@angular/forms'

export const LOGIN_USERNAME = {
  VALIDATORS: [
    Validators.required
  ],
  MESSAGES: {
    'required': 'Username is required.'
  }
}
export const LOGIN_PASSWORD = {
  VALIDATORS: [
    Validators.required
  ],
  MESSAGES: {
    'required': 'Password is required.'
  }
}