|
@@ -1,13 +1,13 @@
|
|
|
import { Component, OnInit, OnDestroy } from '@angular/core';
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
-
|
|
|
+import { RouterModule } from '@angular/router';
|
|
|
@Component({
|
|
|
selector: 'app-ogin-screen',
|
|
|
templateUrl: './ogin-screen.html',
|
|
|
styleUrls: ['./ogin-screen.scss'],
|
|
|
standalone: true,
|
|
|
- imports: [CommonModule, FormsModule]
|
|
|
+ imports: [CommonModule, FormsModule,RouterModule]
|
|
|
})
|
|
|
export class OginScreenComponent implements OnInit, OnDestroy {
|
|
|
activeTab: 'login' | 'register' = 'login';
|