"use client" import { useState } from "react" import Link from "next/link" import { useRouter } from "next/navigation" export default function LoginPage() { const router = useRouter() const [phone, setPhone] = useState("") const [password, setPassword] = useState("") return ( /* Full-screen dark backdrop */
router.back()} > {/* Modal card */}
e.stopPropagation()} > {/* Close button */} {/* Logo */}
{/* Red slashes */}
{[0, 1, 2].map((i) => (
))}
{/* HARIF box */}
HARIF
{/* SPORT text */} SPORT
{/* Title */}

LOGIN

{/* Form */}
{/* Phone Number */}
ET +251 setPhone(e.target.value)} className="flex-1 bg-white border border-gray-300 px-3 py-2 text-sm text-[#333] placeholder:text-gray-400 focus:outline-none focus:border-brand-primary" />
{/* Password */}
setPassword(e.target.value)} placeholder="Password" className="w-full bg-white border border-gray-300 px-3 py-2 text-sm text-[#333] placeholder:text-gray-400 focus:outline-none focus:border-brand-primary" />
{/* Forgot password */}
Forgot password?
{/* Login button */} {/* Support link */}

Support

{/* Register link */}

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

) }