147 lines
4.2 KiB
TypeScript
147 lines
4.2 KiB
TypeScript
"use client";
|
|
|
|
import { signIn } from "next-auth/react";
|
|
import { useRouter, useSearchParams } from "next/navigation";
|
|
import { useState, Suspense } from "react";
|
|
import Link from "next/link";
|
|
|
|
function LoginForm() {
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const [username, setUsername] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [error, setError] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
const registered = searchParams.get("registered") === "true";
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError("");
|
|
setLoading(true);
|
|
|
|
try {
|
|
const result = await signIn("credentials", {
|
|
username,
|
|
password,
|
|
redirect: false,
|
|
});
|
|
|
|
if (result?.error) {
|
|
setError("Invalid username or password");
|
|
} else {
|
|
// Redirect to callbackUrl if present, otherwise to /map
|
|
const callbackUrl = searchParams.get("callbackUrl") || "/map";
|
|
console.log('[Login] Redirecting to:', callbackUrl);
|
|
router.push(callbackUrl);
|
|
// Force a hard refresh to ensure middleware is applied
|
|
router.refresh();
|
|
}
|
|
} catch (err) {
|
|
setError("An error occurred. Please try again.");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="max-w-md w-full bg-white rounded-lg shadow-lg p-8">
|
|
<h1 className="text-2xl font-bold text-center mb-6">
|
|
Location Tracker Admin
|
|
</h1>
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div>
|
|
<label
|
|
htmlFor="username"
|
|
className="block text-sm font-medium text-gray-700 mb-1"
|
|
>
|
|
Username
|
|
</label>
|
|
<input
|
|
id="username"
|
|
type="text"
|
|
value={username}
|
|
onChange={(e) => setUsername(e.target.value)}
|
|
className="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label
|
|
htmlFor="password"
|
|
className="block text-sm font-medium text-gray-700 mb-1"
|
|
>
|
|
Password
|
|
</label>
|
|
<input
|
|
id="password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
className="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div className="text-right mb-4">
|
|
<Link
|
|
href="/forgot-password"
|
|
className="text-sm text-blue-600 hover:text-blue-700"
|
|
>
|
|
Forgot Password?
|
|
</Link>
|
|
</div>
|
|
|
|
{registered && (
|
|
<div className="bg-green-50 text-green-700 px-4 py-2 rounded-md text-sm mb-4">
|
|
✓ Account created successfully! Please sign in.
|
|
</div>
|
|
)}
|
|
|
|
{error && (
|
|
<div className="bg-red-50 text-red-600 px-4 py-2 rounded-md text-sm">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full bg-blue-600 text-white py-2 px-4 rounded-md hover:bg-blue-700 disabled:bg-gray-400 transition-colors"
|
|
>
|
|
{loading ? "Signing in..." : "Sign In"}
|
|
</button>
|
|
</form>
|
|
|
|
<div className="mt-6 text-center text-sm">
|
|
<span className="text-gray-600">Don't have an account? </span>
|
|
<Link href="/register" className="text-blue-600 hover:text-blue-700 font-medium">
|
|
Sign up
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="mt-4 text-center text-sm text-gray-600">
|
|
<p>Demo credentials:</p>
|
|
<p className="font-mono mt-1">
|
|
admin / admin123
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-100">
|
|
<Suspense fallback={
|
|
<div className="max-w-md w-full bg-white rounded-lg shadow-lg p-8">
|
|
<p className="text-center text-gray-600">Loading...</p>
|
|
</div>
|
|
}>
|
|
<LoginForm />
|
|
</Suspense>
|
|
</div>
|
|
);
|
|
}
|