aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/form-validators/reset-password-validators.ts
blob: 70617a56217b662b4b64a127cdfce6611bdce516 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { Validators } from '@angular/forms'
import { BuildFormValidator } from './form-validator.model'

export const RESET_PASSWORD_CONFIRM_VALIDATOR: BuildFormValidator = {
  VALIDATORS: [
    Validators.required
  ],
  MESSAGES: {
    required: $localize`Confirmation of the password is required.`
  }
}