2023-07-12 13:26:34 -05:00
|
|
|
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 [form, setForm] = useState<FormData>({
|
|
|
|
email: "",
|
|
|
|
});
|
|
|
|
|
|
|
|
async function loginUser() {
|
|
|
|
if (form.email !== "") {
|
|
|
|
setSubmitLoader(true);
|
|
|
|
|
|
|
|
const load = toast.loading("Sending login link...");
|
|
|
|
|
2023-07-12 15:34:05 -05:00
|
|
|
await signIn("email", {
|
2023-07-12 13:26:34 -05:00
|
|
|
email: form.email,
|
2023-07-12 15:34:05 -05:00
|
|
|
callbackUrl: "/",
|
2023-07-12 13:26:34 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
toast.dismiss(load);
|
|
|
|
|
|
|
|
setSubmitLoader(false);
|
|
|
|
|
2023-07-12 15:34:05 -05:00
|
|
|
toast.success("Login link sent.");
|
2023-07-12 13:26:34 -05:00
|
|
|
} else {
|
|
|
|
toast.error("Please fill out all the fields.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<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>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|