Change password in database to new reset password

This commit is contained in:
Ephraim Atta-Duncan
2023-06-05 14:36:20 +00:00
parent 8dc9c9d72d
commit 6e2b05f835
5 changed files with 71 additions and 25 deletions

View File

@ -1,34 +0,0 @@
import Head from "next/head";
import { getUserFromToken } from "@documenso/lib/server";
import ResetPassword from "../../components/reset-password";
export default function ResetPasswordPage(props: any) {
return (
<>
<Head>
<title>Reset Password | Documenso</title>
</Head>
<ResetPassword allowSignup={props.ALLOW_SIGNUP}></ResetPassword>
</>
);
}
export async function getServerSideProps(context: any) {
const user = await getUserFromToken(context.req, context.res);
if (user)
return {
redirect: {
source: "/login",
destination: "/dashboard",
permanent: false,
},
};
const ALLOW_SIGNUP = process.env.NEXT_PUBLIC_ALLOW_SIGNUP === "true";
return {
props: {
ALLOW_SIGNUP,
},
};
}