feat(account): add Account Settings page, route, and wire Settings menu item

This commit is contained in:
Chris Chen
2026-06-23 20:15:56 -07:00
parent 1e6ddddf1f
commit a2ecc895de
4 changed files with 27 additions and 1 deletions
+6
View File
@@ -23,6 +23,7 @@ import { AttendanceCounterPageComponent } from './features/meal-attendance/pages
import { OfferingEntryMobilePageComponent } from './features/giving/pages/offering-entry-mobile-page/offering-entry-mobile-page.component';
import { SystemLogsPageComponent } from './features/logging/pages/system-logs-page/system-logs-page.component';
import { AuditLogsPageComponent } from './features/logging/pages/audit-logs-page/audit-logs-page.component';
import { AccountSettingsPageComponent } from './features/account/pages/account-settings-page/account-settings-page.component';
export const routes: Routes = [
// Public routes
@@ -46,6 +47,11 @@ export const routes: Routes = [
component: DashboardComponent,
data: { title: 'Dashboard', titleZh: '首頁', section: 'Home' },
},
{
path: 'account',
component: AccountSettingsPageComponent,
data: { title: 'Account Settings', titleZh: '帳戶設定', section: 'Account' },
},
{
path: 'admin/members',
component: MembersPageComponent,
@@ -0,0 +1,9 @@
<div class="p-4 md:p-6">
<section class="bg-white rounded-lg shadow-sm border border-gray-200 p-4 md:p-6 max-w-xl">
<h2 class="text-lg font-semibold mb-1">Change Password</h2>
<p class="text-sm text-gray-500 mb-4">
Changing your password signs you out on your other devices.
</p>
<app-change-password-form></app-change-password-form>
</section>
</div>
@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ChangePasswordFormComponent } from '../../components/change-password-form/change-password-form.component';
@Component({
selector: 'app-account-settings-page',
standalone: true,
imports: [CommonModule, ChangePasswordFormComponent],
templateUrl: './account-settings-page.component.html',
})
export class AccountSettingsPageComponent {}
@@ -100,7 +100,7 @@ export class UserHeaderComponent implements OnInit, OnDestroy {
{
text: 'Settings',
icon: 'settings',
disabled: true
click: () => this.router.navigate(['/user-portal/account'])
},
{ separator: true },
{