feat(register): add register page with routing and form implementation

This commit is contained in:
2026-07-02 15:57:54 -03:00
parent 5365811a50
commit 57f58c92be
11 changed files with 168 additions and 6 deletions

View File

@@ -3,6 +3,7 @@ import { Routes } from '@angular/router';
import { AuthLayoutComponent } from '../../core/layout/auth-layout/auth-layout.component';
import { StoreLayoutComponent } from '../../core/layout/store-layout/store-layout.component';
import { LoginPageComponent } from './pages/login-page/login-page.component';
import { RegisterPageComponent } from './pages/register-page/register-page.component';
import { StoreHomePageComponent } from './pages/store-home-page/store-home-page.component';
export const routes: Routes = [
@@ -24,6 +25,16 @@ export const routes: Routes = [
}
]
},
{
path: 'register',
component: AuthLayoutComponent,
children: [
{
path: '',
component: RegisterPageComponent
}
]
},
{
path: 'producto/:id',
loadComponent: () =>