Add views folder

This commit is contained in:
Çetin
2024-12-30 12:45:22 +03:00
parent d4fb168043
commit f3d1148b3e
5 changed files with 3 additions and 2 deletions

View File

@@ -15,6 +15,6 @@ export const routes: Routes = [
] ]
}, },
{ path: 'auth', loadChildren: () => import('./demo/components/auth/routes')}, { path: 'auth', loadChildren: () => import('../views/pages/auth/routes')},
{ path: '**', redirectTo: '/notfound' }, { path: '**', redirectTo: '/notfound' },
]; ];

View File

@@ -6,7 +6,8 @@ import { PasswordModule} from 'primeng/password';
import {FormsModule} from '@angular/forms'; import {FormsModule} from '@angular/forms';
import {RouterModule} from '@angular/router'; import {RouterModule} from '@angular/router';
import { RippleModule} from 'primeng/ripple'; import { RippleModule} from 'primeng/ripple';
import {LayoutService} from '../../../layout/service/app.layout.service'; import {LayoutService} from '../../../app/layout/service/app.layout.service';
@Component({ @Component({
selector: 'app-login', selector: 'app-login',