diff --git a/src/pages/authentication/AuthWrapper.jsx b/src/pages/authentication/AuthWrapper.jsx
index 3b1ed4ca..38f68c64 100644
--- a/src/pages/authentication/AuthWrapper.jsx
+++ b/src/pages/authentication/AuthWrapper.jsx
@@ -4,10 +4,13 @@ import "./page-auth.css";
export const AuthWrapper = ({ children }) => {
return (
@@ -164,20 +173,52 @@ const LoginPage = () => {
>
)}
+ {/* Remember Me + Forgot Password */}
+
+
+
+
+
+
+ Forgot Password?
+
+
+ >
+ )}
+ {/* Submit */}
{/* Submit */}
+ {/* Login With OTP Button */}
+
{/* Login With OTP Button */}
{!IsLoginWithOTP && (
<>
@@ -192,9 +233,40 @@ const LoginPage = () => {
Login With OTP
>
+ <>
+
+
+ >
)}
+
+ {/* Footer Text */}
+ {!IsLoginWithOTP ? (
+
+ New on our platform?
+
+ Request a Demo
+
+
+ ) : (
+
+
+
{/* Footer Text */}
{!IsLoginWithOTP ? (
@@ -216,6 +288,8 @@ const LoginPage = () => {
)}
+
+
);
};
diff --git a/src/pages/authentication/RegisterPage.jsx b/src/pages/authentication/RegisterPage.jsx
index 6458248c..23a7497a 100644
--- a/src/pages/authentication/RegisterPage.jsx
+++ b/src/pages/authentication/RegisterPage.jsx
@@ -58,6 +58,7 @@ const RegisterPage = () => {
fetchIndustries();
}, []);
+ useEffect(() => { }, [industries]);
useEffect(() => { }, [industries]);
const fetchIndustries = async () => {
@@ -81,6 +82,7 @@ const RegisterPage = () => {