Files
autojobs/frontend/app/login/page.tsx
T

89 lines
3.9 KiB
TypeScript

"use client"
import { useState } from "react"
import { useRouter } from "next/navigation"
import Link from "next/link"
export default function LoginPage() {
const router = useRouter()
const [form, setForm] = useState({ email: "", password: "" })
const [loading, setLoading] = useState(false)
const [error, setError] = useState("")
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
setLoading(true)
setError("")
try {
const res = await fetch("/autojobs/api/users/login", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(form)
})
if (res.ok) {
router.push("/autojobs/dashboard")
} else {
setError("Invalid email or password")
}
} catch {
setError("Network error")
}
setLoading(false)
}
return (
<div className="min-h-screen bg-slate-900 flex items-center justify-center px-4 py-8">
<div className="w-full max-w-sm">
<div className="text-center mb-8">
<Link href="/autojobs" className="text-2xl font-bold text-white">
Auto<span className="text-blue-400">Jobs</span>
</Link>
<p className="text-slate-400 mt-2 text-sm">Welcome back</p>
</div>
<form onSubmit={handleSubmit} className="bg-slate-800 rounded-2xl p-6 border border-slate-700">
{error && (
<div className="mb-4 p-3 bg-red-500/20 border border-red-500/30 rounded-xl text-red-400 text-xs">
{error}
</div>
)}
<div className="space-y-4">
<div>
<label className="block text-xs text-slate-400 mb-1">Email</label>
<input required type="email" value={form.email} onChange={e => setForm({...form, email: e.target.value})}
className="w-full px-4 py-3 bg-slate-700 border border-slate-600 rounded-xl text-white placeholder-slate-500 focus:outline-none focus:border-blue-500 text-sm"
placeholder="you@example.com" />
</div>
<div>
<label className="block text-xs text-slate-400 mb-1">Password</label>
<input required type="password" value={form.password} onChange={e => setForm({...form, password: e.target.value})}
className="w-full px-4 py-3 bg-slate-700 border border-slate-600 rounded-xl text-white placeholder-slate-500 focus:outline-none focus:border-blue-500 text-sm"
placeholder="••••••••" />
</div>
</div>
<button type="submit" disabled={loading}
className="w-full mt-5 py-3 bg-blue-500 hover:bg-blue-600 disabled:bg-slate-600 text-white rounded-xl font-semibold transition text-sm">
{loading ? "Signing in..." : "Sign In"}
</button>
<div className="mt-4 pt-4 border-t border-slate-700">
<button type="button"
className="w-full py-2.5 bg-white/10 hover:bg-white/20 text-white rounded-xl font-medium transition flex items-center justify-center gap-2 text-sm">
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z"/>
</svg>
Continue with LinkedIn
</button>
</div>
</form>
<p className="text-center text-slate-400 mt-5 text-xs">
Don't have an account? <Link href="/autojobs/signup" className="text-blue-400 hover:underline">Sign up free</Link>
</p>
</div>
</div>
)
}