Skip to content

Instantly share code, notes, and snippets.

@klement97
Last active March 26, 2020 20:25
Show Gist options
  • Save klement97/36be2c7e9599b516c77ed7a50075018b to your computer and use it in GitHub Desktop.
Save klement97/36be2c7e9599b516c77ed7a50075018b to your computer and use it in GitHub Desktop.
this.signUpForm = this.fb.group({
first_name: ['', [
Validators.required,
Validators.maxLength(100)
]],
last_name: ['', [
Validators.required,
Validators.maxLength(100)
]],
email: ['', [
Validators.required,
Validators.maxLength(255),
Validators.minLength(3),
Validators.email
]
],
password: ['', [...passwordValidators]],
re_password: ['', [...passwordValidators]]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment