el.xwx.moe/pages/confirmation.tsx

28 lines
1003 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>
2023-08-14 22:25:25 -05:00
<div className="p-4 sm:w-[30rem] w-80 rounded-2xl shadow-md m-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-xl font-bold mb-2">
2023-08-01 15:20:05 -05:00
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
2023-08-14 22:25:25 -05:00
<hr className="my-5 dark:border-neutral-700" />
2023-08-01 15:20:05 -05:00
2023-08-14 22:25:25 -05:00
<p className="text-sm text-gray-500 dark:text-gray-400">
2023-08-03 18:01:20 -05:00
If you didn&apos;t receive anything, go to 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 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
);
}