Skip to content

Instantly share code, notes, and snippets.

@iamburakcoskun
Created September 12, 2019 21:48
Show Gist options
  • Save iamburakcoskun/07fa26e4dc9573f4ab6a3a80d4d36163 to your computer and use it in GitHub Desktop.
Save iamburakcoskun/07fa26e4dc9573f4ab6a3a80d4d36163 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-register',
templateUrl: './register.component.html',
styleUrls: ['./register.component.css']
})
export class RegisterComponent implements OnInit {
constructor() { }
model: any = {};
ngOnInit() {
}
onSubmit() {
alert('Form gönderildi!! :-)\n\n' + JSON.stringify(this.model))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment