creating login popup security check

Perform security checks on the login popup to minimize bugs in unexpected situations.
This commit is contained in:
2025-08-17 22:50:24 +07:00
parent b12a3211b6
commit a848d4dcb5
9 changed files with 112 additions and 5 deletions

View File

@ -0,0 +1,17 @@
import React from "react";
const SecurityCheckup = () => {
return (
<div className="flex justify-center">
<div className="max-w-[60vh]">
<h1 className="mt-[20vh] text-2xl text-center">Please wait...</h1>
<p className="mt-4 text-sm text-center text-neutral-400">
We want to ensure a secure authentication environment before
proceeding for your safety.
</p>
</div>
</div>
);
};
export default SecurityCheckup;