feat: login and register, style is not ready

This commit is contained in:
Lala, Shahd
2026-05-03 20:49:08 +00:00
parent aa70083aed
commit 361ce1e817
8 changed files with 64 additions and 64 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import { ThemeService } from './services/theme.service';
styleUrl: './app.css' styleUrl: './app.css'
}) })
export class App implements OnInit { export class App implements OnInit {
constructor(private readonly themeService: ThemeService) {} constructor(private readonly themeService: ThemeService) { }
ngOnInit(): void { ngOnInit(): void {
this.themeService.initTheme(); this.themeService.initTheme();
@@ -25,9 +25,9 @@
</nav> </nav>
@if (showLoginDialog) { @if (showLoginDialog) {
<app-login-dialog (onClose)="closeLoginDialog()" (onSuccess)="onLoginSuccess()" /> <app-login-dialog (onClose)="closeLoginDialog()" (onSuccess)="onLoginSuccess()" />
} }
@if (showRegisterDialog) { @if (showRegisterDialog) {
<app-register-dialog (onClose)="closeRegisterDialog()" (onSuccess)="onRegisterSuccess()" /> <app-register-dialog (onClose)="closeRegisterDialog()" (onSuccess)="onRegisterSuccess()" />
} }