custom verify-request page nextauth

So i want users to be able to copy the code that is sent to them by an email and put it into the input to verfiy the email signin, however i can't seem and documentation on how to do it or any examples. does anyone know how i could achive this?
1 Reply
Jacob
Jacob14mo ago
verify-request page:
"use client";
import OtpInput from "@/src/common/components/elements/OtpInput";
import { Button } from "@/src/common/components/ui/button";
import React from "react";
import { useForm, Controller } from "react-hook-form";
import Image from "next/image";
import { getCsrfToken, signIn } from "next-auth/react";

interface CodeFormProps {
code: string;
}

const VerificationPage = () => {
const { control, handleSubmit } = useForm<CodeFormProps>();

const onSubmit = async (data: CodeFormProps) => {
console.log("Code: ", data.code);
signIn("")
};

const getCode = async () => {
const csrfToken = await getCsrfToken();
console.log("Code: ", csrfToken);
return csrfToken;
};

return (
<form
className="m-auto flex max-w-md flex-col items-center gap-3 rounded-3xl bg-white p-3 text-center dark:bg-grey"
onSubmit={handleSubmit(onSubmit)}
>
<div className="flex flex-col items-center">
<Image
src="/favicon.ico"
alt="Logo"
width={128}
height={128}
className="h-32 w-32 rounded-full"
/>
<h1 className="text-step--1">Welcome to Meally</h1>
</div>
<p>Please enter the 5 digit code sent to {}</p>
<Controller
name="code"
defaultValue=""
rules={{ minLength: 5, required: true }}
render={({ field }) => (
<OtpInput
value={field.value}
size={5}
onChange={(val) => {
field.onChange(val);
}}
/>
)}
control={control}
/>
{/* <p>Resend code</p> */}
<Button
type="button"
ariaLabel="submit verification code"
onClick={() => getCode()}
>
get code
</Button>
<Button type="submit" ariaLabel="submit verification code">
Verify
</Button>
</form>
);
};

export default VerificationPage;
"use client";
import OtpInput from "@/src/common/components/elements/OtpInput";
import { Button } from "@/src/common/components/ui/button";
import React from "react";
import { useForm, Controller } from "react-hook-form";
import Image from "next/image";
import { getCsrfToken, signIn } from "next-auth/react";

interface CodeFormProps {
code: string;
}

const VerificationPage = () => {
const { control, handleSubmit } = useForm<CodeFormProps>();

const onSubmit = async (data: CodeFormProps) => {
console.log("Code: ", data.code);
signIn("")
};

const getCode = async () => {
const csrfToken = await getCsrfToken();
console.log("Code: ", csrfToken);
return csrfToken;
};

return (
<form
className="m-auto flex max-w-md flex-col items-center gap-3 rounded-3xl bg-white p-3 text-center dark:bg-grey"
onSubmit={handleSubmit(onSubmit)}
>
<div className="flex flex-col items-center">
<Image
src="/favicon.ico"
alt="Logo"
width={128}
height={128}
className="h-32 w-32 rounded-full"
/>
<h1 className="text-step--1">Welcome to Meally</h1>
</div>
<p>Please enter the 5 digit code sent to {}</p>
<Controller
name="code"
defaultValue=""
rules={{ minLength: 5, required: true }}
render={({ field }) => (
<OtpInput
value={field.value}
size={5}
onChange={(val) => {
field.onChange(val);
}}
/>
)}
control={control}
/>
{/* <p>Resend code</p> */}
<Button
type="button"
ariaLabel="submit verification code"
onClick={() => getCode()}
>
get code
</Button>
<Button type="submit" ariaLabel="submit verification code">
Verify
</Button>
</form>
);
};

export default VerificationPage;
Want results from more Discord servers?
Add your server