el.xwx.moe/pages/confirmation.tsx

28 lines
904 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-2 sm:w-[30rem] w-80 rounded-2xl shadow-md m-auto border border-sky-100 bg-slate-50 text-sky-800">
<p className="text-center text-xl font-bold mb-2 text-black">
Please check your Email
</p>
2023-07-12 13:26:34 -05:00
<p>A sign in link has been sent to your email address.</p>
2023-07-12 15:34:05 -05:00
<p>You can safely close this page.</p>
2023-08-01 15:20:05 -05:00
<hr className="my-5" />
<p className="text-sm text-gray-500 ">
2023-08-01 15:31:30 -05:00
If you didn&apos;t recieve anything, go to the{" "}
2023-08-01 15:20:05 -05:00
<Link href="/forgot" className="font-bold">
Password Recovery
</Link>{" "}
page and enter your Email to resend the sign in link.
</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
);
}