Skip to content

Instantly share code, notes, and snippets.

@ganqqwerty
Created June 18, 2019 08:42
Show Gist options
  • Save ganqqwerty/0323e54c931013c799f47a988219f98a to your computer and use it in GitHub Desktop.
Save ganqqwerty/0323e54c931013c799f47a988219f98a to your computer and use it in GitHub Desktop.
ngOnInit() {
this.myForm = this.fb.group({
myCheckbox: [''],
myEmailField: ['', [
Validators.maxLength(250),
Validators.minLength(5),
Validators.pattern(/.+@.+\..+/)
]]
});
}
onSubmit() {
console.log(this.myForm.value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment