aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/forms/form-validators/reset-password.ts
blob: 7dafdef9a157b43d5f2c7176a96c5d1023260bf1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                           
import { Validators } from '@angular/forms'

export const RESET_PASSWORD_CONFIRM = {
  VALIDATORS: [
    Validators.required
  ],
  MESSAGES: {
    'required': 'Confirmation of the password is required.'
  }
}