87 lines
2.4 KiB
TypeScript
87 lines
2.4 KiB
TypeScript
|
import EmailConfirmaion from "@/components/Modal/EmailConfirmaion";
|
||
|
import SubmitButton from "@/components/SubmitButton";
|
||
|
import { signIn } from "next-auth/react";
|
||
|
import Link from "next/link";
|
||
|
import { useState } from "react";
|
||
|
import { toast } from "react-hot-toast";
|
||
|
|
||
|
interface FormData {
|
||
|
email: string;
|
||
|
}
|
||
|
|
||
|
export default function Forgot() {
|
||
|
const [submitLoader, setSubmitLoader] = useState(false);
|
||
|
const [showConfirmation, setShowConfirmation] = useState(false);
|
||
|
|
||
|
const [form, setForm] = useState<FormData>({
|
||
|
email: "",
|
||
|
});
|
||
|
|
||
|
async function loginUser() {
|
||
|
if (form.email !== "") {
|
||
|
setSubmitLoader(true);
|
||
|
|
||
|
const load = toast.loading("Sending login link...");
|
||
|
|
||
|
const res = await signIn("email", {
|
||
|
email: form.email,
|
||
|
callbackUrl: window.location.origin,
|
||
|
});
|
||
|
|
||
|
setShowConfirmation(true);
|
||
|
|
||
|
toast.dismiss(load);
|
||
|
|
||
|
setSubmitLoader(false);
|
||
|
|
||
|
if (!res?.ok) {
|
||
|
toast.error("Invalid login.");
|
||
|
}
|
||
|
} else {
|
||
|
toast.error("Please fill out all the fields.");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
{showConfirmation && form.email ? (
|
||
|
<EmailConfirmaion email={form.email} />
|
||
|
) : undefined}
|
||
|
<p className="text-xl font-bold text-center text-sky-500 mt-10 mb-3">
|
||
|
Linkwarden
|
||
|
</p>
|
||
|
<div className="p-5 mx-auto flex flex-col gap-3 justify-between sm:w-[28rem] w-80 bg-slate-50 rounded-md border border-sky-100">
|
||
|
<div className="my-5 text-center">
|
||
|
<p className="text-3xl font-bold text-sky-500">Password reset</p>
|
||
|
</div>
|
||
|
|
||
|
<p className="text-sm text-sky-500 w-fit font-semibold">Email</p>
|
||
|
|
||
|
<input
|
||
|
type="text"
|
||
|
placeholder="johnny@example.com"
|
||
|
value={form.email}
|
||
|
onChange={(e) => setForm({ ...form, email: e.target.value })}
|
||
|
className="w-full rounded-md p-3 mx-auto border-sky-100 border-solid border outline-none focus:border-sky-500 duration-100"
|
||
|
/>
|
||
|
|
||
|
<p className="text-md text-gray-500">
|
||
|
Make sure to change your password in the profile settings afterwards.
|
||
|
</p>
|
||
|
|
||
|
<SubmitButton
|
||
|
onClick={loginUser}
|
||
|
label="Send Login Link"
|
||
|
className="mt-2 w-full text-center"
|
||
|
loading={submitLoader}
|
||
|
/>
|
||
|
</div>
|
||
|
<div className="flex items-baseline gap-1 justify-center my-3">
|
||
|
<Link href={"/login"} className="block text-sky-500 font-bold">
|
||
|
Go back
|
||
|
</Link>
|
||
|
</div>
|
||
|
</>
|
||
|
);
|
||
|
}
|