"use client" import { useState } from "react" import Link from "next/link" export default function LoginPage() { const [username, setUsername] = useState("") const [password, setPassword] = useState("") return (

Login

Sign in to your Harifsport account

setUsername(e.target.value)} placeholder="Enter username" className="w-full bg-input border border-border rounded px-3 py-2 text-sm text-foreground placeholder:text-muted-foreground focus:outline-none focus:border-primary transition-colors" />
setPassword(e.target.value)} placeholder="Enter password" className="w-full bg-input border border-border rounded px-3 py-2 text-sm text-foreground placeholder:text-muted-foreground focus:outline-none focus:border-primary transition-colors" />
Forgot password?

Don't have an account?{" "} Register now

) }