Skip to content

Instantly share code, notes, and snippets.

@invisiblegeek1
Created November 18, 2021 05:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save invisiblegeek1/5c3fcce29fef21a88ab583a112811616 to your computer and use it in GitHub Desktop.
Save invisiblegeek1/5c3fcce29fef21a88ab583a112811616 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
//import { FormGroup } from '@angular/forms';
@Component({
selector: 'app-signup',
templateUrl: './signup.component.html',
styleUrls: ['./signup.component.css']
})
export class SignupComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
UserSignUpDetails = {
name: "",
email: "",
password: ""
}
writeForm() {
console.log(this.UserSignUpDetails);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment