]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/forms/form-validators/login.ts
Form validators refractoring
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / forms / form-validators / login.ts
1 import { Validators } from '@angular/forms'
2
3 export const LOGIN_USERNAME = {
4 VALIDATORS: [
5 Validators.required
6 ],
7 MESSAGES: {
8 'required': 'Username is required.'
9 }
10 }
11 export const LOGIN_PASSWORD = {
12 VALIDATORS: [
13 Validators.required
14 ],
15 MESSAGES: {
16 'required': 'Password is required.'
17 }
18 }