"use client" import { useState } from "react" import { Card } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" import Link from "next/link" import { ArrowLeft, Mail } from "lucide-react" export default function ResetPasswordPage() { const [email, setEmail] = useState("") const [submitted, setSubmitted] = useState(false) const handleSubmit = (e: React.FormEvent) => { e.preventDefault() // Здесь будет логика отправки письма для сброса пароля console.log("Reset password for:", email) setSubmitted(true) } return (
{/* Background grid */}
{/* Glowing effects */}
{/* Top accent line */}
{/* Back button */} Back to login {!submitted ? ( <> {/* Header */}

Reset my password

Enter your email to receive reset instructions

{/* Reset Form */}
setEmail(e.target.value)} required className="bg-[#0a0e1a] border-cyan-500/30 text-cyan-400 placeholder:text-cyan-400/30 font-mono focus:border-cyan-400 focus:ring-cyan-400/20" />
) : ( <> {/* Success State */}

Check your email

We've sent password reset instructions to
{email}

Didn't receive the email? Check your spam folder or try again in a few minutes.

)}
{/* Corner decorations */}
) }