194 lines
7.5 KiB
TypeScript
194 lines
7.5 KiB
TypeScript
import React, { useState } from "react";
|
|
import { TrendingUp, Mail, Lock, ArrowRight } from "lucide-react";
|
|
import { useNavigate } from "react-router";
|
|
import { useAuthStore } from "@/stores/authStore";
|
|
|
|
const Login: React.FC = () => {
|
|
const [form, setForm] = useState({ email: "", password: "" });
|
|
const [error, setError] = useState("");
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const navigate = useNavigate();
|
|
const { login } = useAuthStore();
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
if (!form.email || !form.password) {
|
|
return setError("All fields are required");
|
|
}
|
|
setIsLoading(true);
|
|
setError("");
|
|
const result = await login(form.email, form.password);
|
|
|
|
if (result.success) {
|
|
setIsLoading(false);
|
|
navigate("/dashboard/overview");
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex">
|
|
{/* Left Side - Branding */}
|
|
<div className="hidden lg:flex lg:w-1/2 bg-gradient-to-br from-indigo-600 via-purple-600 to-pink-500 p-12 flex-col justify-between relative overflow-hidden">
|
|
<div className="absolute inset-0 bg-black opacity-10"></div>
|
|
<div className="absolute top-0 right-0 w-96 h-96 bg-white opacity-5 rounded-full -mr-48 -mt-48"></div>
|
|
<div className="absolute bottom-0 left-0 w-80 h-80 bg-white opacity-5 rounded-full -ml-40 -mb-40"></div>
|
|
|
|
<div className="relative z-10">
|
|
<div className="flex items-center gap-3 mb-8">
|
|
<div className="w-12 h-12 flex items-center justify-center">
|
|
<img src="/planpost.png" alt="Logo" className="w-12 h-12" />
|
|
</div>
|
|
<span className="text-2xl font-bold text-white">
|
|
Planpost Affiliate
|
|
</span>
|
|
</div>
|
|
|
|
<div className="space-y-6 text-white">
|
|
<h1 className="text-5xl font-bold leading-tight">
|
|
Maximize Your
|
|
<br />
|
|
Earning Potential
|
|
</h1>
|
|
<p className="text-xl text-indigo-100 max-w-md">
|
|
Join thousands of affiliates earning passive income through our
|
|
powerful platform.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="relative z-10 grid grid-cols-3 gap-8 text-white">
|
|
<div>
|
|
<div className="text-3xl font-bold">50K+</div>
|
|
<div className="text-indigo-200 text-sm">Active Affiliates</div>
|
|
</div>
|
|
<div>
|
|
<div className="text-3xl font-bold">$2.5M</div>
|
|
<div className="text-indigo-200 text-sm">Paid Out</div>
|
|
</div>
|
|
<div>
|
|
<div className="text-3xl font-bold">98%</div>
|
|
<div className="text-indigo-200 text-sm">Satisfaction</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Right Side - Login Form */}
|
|
<div className="flex-1 flex items-center justify-center p-8 bg-gray-50">
|
|
<div className="w-full max-w-md">
|
|
{/* Mobile Logo */}
|
|
<div className="lg:hidden flex items-center gap-3 mb-8 justify-center">
|
|
<div className="w-10 h-10 bg-indigo-600 rounded-xl flex items-center justify-center">
|
|
<TrendingUp className="w-6 h-6 text-white" />
|
|
</div>
|
|
<span className="text-2xl font-bold text-gray-900">
|
|
AffiliatePro
|
|
</span>
|
|
</div>
|
|
|
|
<div className="bg-white rounded-2xl shadow-xl p-8 border border-gray-100">
|
|
<div className="mb-8">
|
|
<h2 className="text-3xl font-bold text-gray-900 mb-2">
|
|
Welcome back
|
|
</h2>
|
|
<p className="text-gray-600">
|
|
Sign in to access your affiliate dashboard
|
|
</p>
|
|
</div>
|
|
|
|
{error && (
|
|
<div className="mb-6 p-4 bg-red-50 border border-red-200 rounded-lg">
|
|
<p className="text-red-600 text-sm">{error}</p>
|
|
</div>
|
|
)}
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-5">
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-700 mb-2">
|
|
Email Address
|
|
</label>
|
|
<div className="relative">
|
|
<Mail className="absolute left-3 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" />
|
|
<input
|
|
type="email"
|
|
placeholder="you@example.com"
|
|
value={form.email}
|
|
onChange={(e) =>
|
|
setForm({ ...form, email: e.target.value })
|
|
}
|
|
className="w-full pl-11 pr-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-transparent transition-all outline-none"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div className="flex items-center justify-between mb-2">
|
|
<label className="block text-sm font-medium text-gray-700">
|
|
Password
|
|
</label>
|
|
<a
|
|
href="#"
|
|
className="text-sm text-indigo-600 hover:text-indigo-700 font-medium"
|
|
>
|
|
Forgot?
|
|
</a>
|
|
</div>
|
|
<div className="relative">
|
|
<Lock className="absolute left-3 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" />
|
|
<input
|
|
type="password"
|
|
placeholder="••••••••"
|
|
value={form.password}
|
|
onChange={(e) =>
|
|
setForm({ ...form, password: e.target.value })
|
|
}
|
|
className="w-full pl-11 pr-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-transparent transition-all outline-none bg-white"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={isLoading}
|
|
className="w-full bg-gradient-to-r from-indigo-600 to-purple-600 text-white py-3 rounded-lg font-semibold hover:from-indigo-700 hover:to-purple-700 transition-all shadow-lg hover:shadow-xl disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center gap-2 group cursor-pointer"
|
|
>
|
|
{isLoading ? (
|
|
<div className="w-5 h-5 border-2 border-white border-t-transparent rounded-full animate-spin"></div>
|
|
) : (
|
|
<>
|
|
Sign In
|
|
<ArrowRight className="w-5 h-5 group-hover:translate-x-1 transition-transform" />
|
|
</>
|
|
)}
|
|
</button>
|
|
</form>
|
|
|
|
<div className="mt-6 text-center">
|
|
<p className="text-gray-600 text-sm">
|
|
Don't have an account?{" "}
|
|
<a
|
|
href="/signup"
|
|
className="text-indigo-600 hover:text-indigo-700 font-semibold"
|
|
>
|
|
Sign up for free
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<p className="text-center text-sm text-gray-500 mt-6">
|
|
By signing in, you agree to our{" "}
|
|
<a href="#" className="text-indigo-600 hover:underline">
|
|
Terms
|
|
</a>{" "}
|
|
and{" "}
|
|
<a href="#" className="text-indigo-600 hover:underline">
|
|
Privacy Policy
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Login;
|