SPB Git forge

spb/rareindex

Public
54commits 1branches 0releases
7.1 MBsize
maindefault branch
10 days agolast push
TypeScript 61.9% HTML 37.2% SQL 0.7%
709 B · 21 lines tsx
Raw Blame History
1import type { Metadata } from 'next';2import Link from 'next/link';3import { ForgotForm } from './forgot-form';45export const metadata: Metadata = { title: 'Reset your password', robots: { index: false } };67export default function ForgotPage() {8  return (9    <>10      <h1 className="text-xl font-semibold tracking-tight">Reset your password</h1>11      <p className="mt-1 text-sm text-muted">Enter your e-mail and we will send a reset link and a 6-digit code.</p>12      <ForgotForm />13      <p className="mt-6 text-center text-sm text-muted">14        <Link href="/login" className="font-medium text-fg underline-offset-4 hover:underline">15          Back to sign in16        </Link>17      </p>18    </>19  );20}21