Login and Register component separated

This commit is contained in:
Anish Gurung 2024-03-19 09:39:37 -07:00
parent bd8eba9de1
commit b1e895f69a
15 changed files with 2259 additions and 1104 deletions

View file

@ -0,0 +1,9 @@
import { Component } from '@angular/core';
import { NbRegisterComponent } from '@nebular/auth';
@Component({
selector: 'ngx-register',
templateUrl: './register.component.html',
})
export class NgxRegisterComponent extends NbRegisterComponent {
}