152. Register template (#20 Section 21: Register Page)

This commit is contained in:
Art
2021-09-20 12:00:07 +03:00
parent 53acf81262
commit b7f4b8f965
4 changed files with 149 additions and 3 deletions

View File

@ -1,4 +1,5 @@
import {Component, OnInit} from '@angular/core';
import {User} from "../../model/user";
@Component({
selector: 'app-register',
@ -7,9 +8,16 @@ import {Component, OnInit} from '@angular/core';
})
export class RegisterComponent implements OnInit {
constructor() { }
public showLoading: boolean;
constructor() {
}
ngOnInit(): void {
}
public onRegister(user: User) {
}
}