diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index dc39edb..e385b94 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -1,3 +1,22 @@ import { Routes } from '@angular/router'; +import { LoginComponent } from './components/authentication/login/login.component'; +import { SignUpComponent } from './components/authentication/sign-up/sign-up.component'; +import { RecoverAccountComponent } from './components/authentication/recover-account/recover-account.component'; -export const routes: Routes = []; +export const routes: Routes = [ + { + path: 'login', + component: LoginComponent, + title: 'Login' + }, + { + path: 'register', + component: SignUpComponent, + title: 'Register' + }, + { + path: 'recover', + component: RecoverAccountComponent, + title: 'Recover Account' + } +];