You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
import { ShieldIcon } from 'lucide-react'
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
|
|
import ChangePasswordForm from '../../(components)/change-password-form'
|
|
|
|
export default function ChangePasswordPage() {
|
|
return (
|
|
<div className='flex-1 space-y-6 p-6 md:p-8'>
|
|
<div className='space-y-1'>
|
|
<div className='flex items-center space-x-2'>
|
|
<ShieldIcon className='h-6 w-6 text-primary' />
|
|
<h2 className='text-3xl font-bold tracking-tight'>Change Password</h2>
|
|
</div>
|
|
<p className='text-muted-foreground'>Update your account password</p>
|
|
</div>
|
|
|
|
<div className='max-w-2xl'>
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Password Security</CardTitle>
|
|
<CardDescription>Change your password to keep your account secure</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<ChangePasswordForm />
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|