diff --git a/pages/forgot.tsx b/pages/forgot.tsx index ee7cd46..5d5557d 100644 --- a/pages/forgot.tsx +++ b/pages/forgot.tsx @@ -1,5 +1,6 @@ import SubmitButton from "@/components/SubmitButton"; import { signIn } from "next-auth/react"; +import Image from "next/image"; import Link from "next/link"; import { useState } from "react"; import { toast } from "react-hot-toast"; @@ -38,27 +39,35 @@ export default function Forgot() { return ( <> -

- Linkwarden -

-
-
-

Password reset

+
+
+ Linkwarden +
+

Password Reset

+
-

Email

+
+

Email

- 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" - /> - -

- Make sure to change your password in the profile settings afterwards. -

+ setForm({ ...form, email: e.target.value })} + className="w-full rounded-md p-2 mx-auto border-sky-100 border-solid border outline-none focus:border-sky-500 duration-100" + /> +

+ Make sure to change your password in the profile settings + afterwards. +

+
-
-
- - Go back - +
+ + Go back + +
);