16 lines
491 B
TypeScript
16 lines
491 B
TypeScript
|
|
import { PasswordForm } from "../../../../../components/dashboard/password-form"
|
|
|
|
export default function ChangePasswordPage() {
|
|
return (
|
|
<div className="flex-1 space-y-4 p-8 pt-6">
|
|
<div className="flex items-center justify-between space-y-2">
|
|
<h2 className="text-3xl font-bold tracking-tight">Şifre Değiştir</h2>
|
|
</div>
|
|
<div className="max-w-md">
|
|
<PasswordForm />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|