Skip to content

Instantly share code, notes, and snippets.

@srdelarosa
Created January 3, 2021 12:51
Show Gist options
  • Save srdelarosa/1fe8ca43dbe462e106e1cfb3b7ce8f10 to your computer and use it in GitHub Desktop.
Save srdelarosa/1fe8ca43dbe462e106e1cfb3b7ce8f10 to your computer and use it in GitHub Desktop.
this.loginForm = this.formBuilder.group({
email: new FormControl(
'',
Validators.compose([
Validators.required,
Validators.pattern('^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9-.]+$'),
])
),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment