24 lines
724 B
JavaScript
24 lines
724 B
JavaScript
import DashboardChangePasswordComponent from "@/components/dashboard/change-password";
|
|
import TitlePage from "@/core/components/TitlePage";
|
|
import WithAuthMiddleware from "@/middlewares/WithAuth";
|
|
import {parse} from "next-useragent";
|
|
|
|
export default function LoanFollowUp() {
|
|
return (
|
|
<WithAuthMiddleware>
|
|
<TitlePage text="Dashboard.change_password"/>
|
|
<DashboardChangePasswordComponent/>
|
|
</WithAuthMiddleware>
|
|
);
|
|
}
|
|
|
|
export async function getServerSideProps({req, locale}) {
|
|
const {isBot} = parse(req.headers["user-agent"]);
|
|
return {
|
|
props: {
|
|
messages: (await import(`&/locales/${locale}/app.json`)).default,
|
|
isBot,
|
|
},
|
|
};
|
|
}
|