mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 08:56:52 +00:00
feat: built verification screen
This commit is contained in:
@@ -1,7 +1,33 @@
|
|||||||
|
import { EnvelopeSimpleOpenIcon } from "@phosphor-icons/react";
|
||||||
|
import Logo from "../components/Logo";
|
||||||
|
|
||||||
export default function VerifyEmail() {
|
export default function VerifyEmail() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className="glass-card w-full max-w-sm p-8 text-center flex flex-col items-center gap-6 fade-zoom">
|
||||||
<h1>Verify Email</h1>
|
<div className="auth-icon-container">
|
||||||
|
<EnvelopeSimpleOpenIcon size={32} weight="duotone" className="text-primary" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="space-y-2">
|
||||||
|
<h2 className="font-display text-xl text-primary">Check Your Email</h2>
|
||||||
|
<p className="text-sm opacity-80 leading-relaxed font-sans">
|
||||||
|
We've sent an activation link to your inbox. <br />
|
||||||
|
Please click it to verify your <Logo /> account.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="divider opacity-10"></div>
|
||||||
|
|
||||||
|
<div className="bg-base-200/50 p-4 rounded-lg text-xs leading-relaxed text-left opacity-70">
|
||||||
|
<p>
|
||||||
|
Didn't receive it? Check your spam folder or wait for a few minutes.
|
||||||
|
The link will expire in 24 hours.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p className="text-xs italic opacity-40 cursor-pointer underline" onClick={() => window.close()}>
|
||||||
|
You can close this window now.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user