Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created March 26, 2018 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/4fa9cf1f5a9c52781717372866565944 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/4fa9cf1f5a9c52781717372866565944 to your computer and use it in GitHub Desktop.
ngOnInit() {
this.loginForm = this.fb.group({
email: [null, Validators.required],
password: [null, [Validators.required, Validators.maxLength(8)]],
phonenumber: [null]
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment