Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. export class GroupComponent {
  2. kisiForm = new FormGroup({
  3. adi: new FormControl(''),
  4. email: new FormControl(''),
  5. telefon: new FormControl(''),
  6. sifre: new FormControl('')
  7. });
  8.  
  9. kisi: KisiBilgisi;
  10.  
  11. onSubmit() {
  12. this.kisi = this.kisiForm.value;
  13. }
  14. temizle() {
  15. this.kisiForm.reset();
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement