diff --git a/web/src/app/app-routing.module.ts b/web/src/app/app-routing.module.ts index 40c40bb..c7191e7 100644 --- a/web/src/app/app-routing.module.ts +++ b/web/src/app/app-routing.module.ts @@ -4,12 +4,14 @@ import { NotFoundComponent } from "src/app/components/error/not-found/not-found. import { AuthGuard } from "src/app/core/guard/auth.guard"; import { HomeComponent } from "src/app/components/home/home.component"; import { RedirectComponent } from "src/app/components/redirect/redirect.component"; +import { LogoutComponent } from "src/app/components/logout/logout.component"; const routes: Routes = [ { path: "", component: HomeComponent, }, + { path: "logout", component: LogoutComponent }, { path: "admin", loadChildren: () => diff --git a/web/src/app/app.component.html b/web/src/app/app.component.html index 8152918..d0a5c7a 100644 --- a/web/src/app/app.component.html +++ b/web/src/app/app.component.html @@ -1,8 +1,8 @@ -
+
-