92 lines
3.9 KiB
TypeScript
92 lines
3.9 KiB
TypeScript
'use client'
|
|
|
|
import Link from 'next/link'
|
|
import { useState } from 'react'
|
|
import PublicShell from '@/components/PublicShell'
|
|
import { ADMIN_API_BASE } from '@/lib/api'
|
|
|
|
export default function AdminForgotPasswordPage() {
|
|
const [email, setEmail] = useState('')
|
|
const [loading, setLoading] = useState(false)
|
|
const [sent, setSent] = useState(false)
|
|
const [error, setError] = useState<string | null>(null)
|
|
|
|
async function handleSubmit(e: React.FormEvent) {
|
|
e.preventDefault()
|
|
setLoading(true)
|
|
setError(null)
|
|
try {
|
|
const res = await fetch(`${ADMIN_API_BASE}/admin/auth/forgot-password`, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
credentials: 'include',
|
|
body: JSON.stringify({ email }),
|
|
})
|
|
if (!res.ok) throw new Error()
|
|
setSent(true)
|
|
} catch {
|
|
setError('Something went wrong. Please try again.')
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<PublicShell>
|
|
<main className="flex flex-1 items-center justify-center px-4">
|
|
<div className="w-full max-w-md">
|
|
<div className="mb-8 text-center">
|
|
<Link href="/" className="text-xs font-semibold uppercase tracking-[0.2em] text-orange-700 dark:text-orange-300">RentalDriveGo</Link>
|
|
<h1 className="mt-3 text-3xl font-black tracking-tight">Forgot password</h1>
|
|
<p className="mt-1 text-sm text-zinc-400">Enter your admin email to receive a reset link.</p>
|
|
</div>
|
|
|
|
<div className="panel p-8">
|
|
{sent ? (
|
|
<div className="space-y-3 text-center">
|
|
<div className="mx-auto flex h-12 w-12 items-center justify-center rounded-full bg-emerald-900/40">
|
|
<svg className="h-6 w-6 text-emerald-400" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M5 13l4 4L19 7" />
|
|
</svg>
|
|
</div>
|
|
<p className="text-sm text-zinc-300">Check your email</p>
|
|
<p className="text-xs text-zinc-500">If that email is registered, a reset link has been sent. It expires in 60 minutes.</p>
|
|
</div>
|
|
) : (
|
|
<form onSubmit={handleSubmit} className="space-y-5">
|
|
{error && (
|
|
<div className="rounded-xl border border-red-900/50 bg-red-950/50 px-4 py-3 text-sm text-red-400">{error}</div>
|
|
)}
|
|
<div>
|
|
<label className="mb-1.5 block text-sm font-medium text-zinc-300">Email</label>
|
|
<input
|
|
type="email"
|
|
required
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
placeholder="admin@rentaldrivego.com"
|
|
className="w-full rounded-2xl border border-stone-200 bg-white px-4 py-3 text-sm text-stone-900 placeholder:text-stone-400 focus:border-transparent focus:outline-none focus:ring-2 focus:ring-orange-500 dark:border-blue-800 dark:bg-[#07101e]/80 dark:text-stone-100 dark:placeholder:text-stone-500"
|
|
/>
|
|
</div>
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="inline-flex w-full justify-center rounded-full bg-stone-900 px-6 py-3 text-sm font-semibold text-white transition hover:bg-orange-700 disabled:opacity-50 dark:bg-orange-400 dark:text-white dark:hover:bg-orange-300"
|
|
>
|
|
{loading ? 'Sending…' : 'Send reset link'}
|
|
</button>
|
|
</form>
|
|
)}
|
|
|
|
<div className="mt-6 text-center">
|
|
<Link href="/login" className="text-sm text-zinc-500 hover:text-zinc-300 transition-colors">
|
|
Back to sign in
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</PublicShell>
|
|
)
|
|
}
|