+
+// // {/* Logo */}
+// //
+// // Paisable
+// //
+
+// // {/* Card */}
+// //
+
+// // {/* Header */}
+// //
+// //
+// // Forgot Password?
+// //
+
+// //
+// // Enter your email address and we'll send you a link to reset your password.
+// //
+// //
+
+// // {/* Success Message */}
+// // {message && (
+// //
+// //
+// // {message}
+// //
+// //
+// // )}
+
+// // {/* Error Message */}
+// // {error && (
+// //
+// //
+// // {error}
+// //
+// //
+// // )}
+
+// // {/* Form */}
+// //
+// //
+
+// // {/* Footer */}
+// //
+// // Protected by industry-standard security
+// //
+// //
+// // );
+// // }
+
+
+// import React, { useState } from 'react';
+// import { Link } from 'react-router-dom';
+// import { HiMail, HiArrowLeft } from 'react-icons/hi';
+// import { useAuth } from '../hooks/useAuth';
+
+// export default function ForgotPasswordPage() {
+// const [email, setEmail] = useState('');
+// const [message, setMessage] = useState('');
+// const [error, setError] = useState('');
+// const [isLoading, setIsLoading] = useState(false);
+
+// const { forgotPassword } = useAuth();
+
+// const handleSubmit = async (e) => {
+// e.preventDefault();
+
+// setError('');
+// setMessage('');
+
+// if (!email.trim()) {
+// setError('Please enter your email address.');
+// return;
+// }
+
+// setIsLoading(true);
+
+// try {
+// await forgotPassword(email.trim());
+
+// setMessage(
+// 'If an account exists with this email, a password reset link has been sent.'
+// );
+// } catch (error) {
+// setError(
+// error.message ||
+// 'Unable to send password reset link. Please try again.'
+// );
+// } finally {
+// setIsLoading(false);
+// }
+// };
+
+// return (
+//
- {/* Logo/Brand */}
-
Paisable
@@ -48,66 +51,121 @@ export default function LoginPage() {
{/* Login Card */}
+
{/* Header */}
-
Welcome Back
-
Sign in to continue to your account
+
+ Welcome Back
+
+
+
+ Sign in to continue to your account
+
{/* Error Message */}
{serverError && (
-
{serverError}
+
+ {serverError}
+
)}
{/* Form */}
@@ -147,6 +212,8 @@ export default function LoginPage() {
Protected by industry-standard security
+
);
-}
\ No newline at end of file
+}
+