diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 1053bcb..ffc8a92 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -12,6 +12,7 @@ import { ChapterNotesComponent } from './tabs/courses/chapter-notes/chapter-note import { QuizComponent } from './tabs/courses/quiz/quiz.component'; import { PostDetailsComponent } from './reusable-components/forum/post-details/post-details.component'; import { ChatPageComponent } from './chat-page/chat-page.component'; +import { SettingsComponent } from './settings/settings.component'; const routes: Routes = [ { path: '', pathMatch: 'full', redirectTo: 'welcome' }, @@ -28,6 +29,7 @@ const routes: Routes = [ { component: ForumPageComponent, path: 'forum'}, { component: PostDetailsComponent, path: 'forum-post-details'}, { component: ChatPageComponent, path: 'chats'}, + { component: SettingsComponent, path: 'settings'}, ]; @NgModule({ diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 7418485..6314cbf 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -28,6 +28,7 @@ import { QuizComponent } from './tabs/courses/quiz/quiz.component'; import { PostDetailsComponent } from './reusable-components/forum/post-details/post-details.component'; import { ChatPageComponent } from './chat-page/chat-page.component'; import { ChatWindowComponent } from './chat-page/chat-window/chat-window.component'; +import { SettingsComponent } from './settings/settings.component'; @NgModule({ declarations: [ @@ -51,6 +52,7 @@ import { ChatWindowComponent } from './chat-page/chat-window/chat-window.compone PostDetailsComponent, ChatPageComponent, ChatWindowComponent, + SettingsComponent, ], imports: [ BrowserModule, diff --git a/src/app/settings/settings.component.html b/src/app/settings/settings.component.html new file mode 100644 index 0000000..659eb37 --- /dev/null +++ b/src/app/settings/settings.component.html @@ -0,0 +1,46 @@ +