Guest User

Untitled

a guest
Sep 7th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. var that = this;
  2.  
  3. this.myForm = this.FormBuilder.group({
  4. username: ["", this.Validators.required],
  5. password: ["", this.Validators.required],
  6. bio: ["", this.Validators.required],
  7. });
  8.  
  9. this.create = function() {
  10. console.log("VALUES", that.myForm.valid, that.myForm.value);
  11. };
Add Comment
Please, Sign In to add comment