ADDED website templates #1

This commit is contained in:
Marek Lesko
2025-07-13 09:32:53 +00:00
parent e467247175
commit 9201f49b5b
330 changed files with 35271 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { Routes } from '@angular/router';
import { AppSideLoginComponent } from './side-login/side-login.component';
import { AppSideRegisterComponent } from './side-register/side-register.component';
export const AuthenticationRoutes: Routes = [
{
path: '',
children: [
{
path: 'login',
component: AppSideLoginComponent,
},
{
path: 'register',
component: AppSideRegisterComponent,
},
],
},
];