el.xwx.moe/pages/confirmation.tsx

28 lines
965 B
TypeScript
Raw Normal View History

2023-08-01 15:20:05 -05:00
import CenteredForm from "@/layouts/CenteredForm";
import Link from "next/link";
2023-07-12 13:26:34 -05:00
import React from "react";
2023-07-12 15:34:05 -05:00
export default function EmailConfirmaion() {
2023-07-12 13:26:34 -05:00
return (
2023-08-01 15:20:05 -05:00
<CenteredForm>
<div className="p-4 max-w-[30rem] min-w-80 w-full rounded-2xl shadow-md mx-auto border border-sky-100 dark:border-neutral-700 bg-slate-50 text-black dark:text-white dark:bg-neutral-800">
<p className="text-center text-2xl sm:text-3xl font-extralight mb-2 ">
2023-08-01 15:20:05 -05:00
Please check your Email
</p>
<hr className="border-1 border-sky-100 dark:border-neutral-700 my-3" />
<p>A sign in link has been sent to your email address.</p>
2023-08-01 15:20:05 -05:00
<p className="mt-3">
Didn&apos;t see the email? Check your spam folder or visit the{" "}
2023-08-14 22:25:25 -05:00
<Link href="/forgot" className="font-bold underline">
2023-08-01 15:20:05 -05:00
Password Recovery
</Link>{" "}
page to resend the link.
2023-08-01 15:20:05 -05:00
</p>
2023-07-12 13:26:34 -05:00
</div>
2023-08-01 15:20:05 -05:00
</CenteredForm>
2023-07-12 13:26:34 -05:00
);
}