From 77d1f4a37a8238033c25a1f5f5b1ba36c16de63f Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 13 Jul 2023 20:42:04 -0400 Subject: [PATCH] small improvement --- pages/forgot.tsx | 55 ++++++++++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 23 deletions(-) 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 + +
);