mercury-web/src/app/(auth)/forgot/page.tsx
Munkherdene 059b7e13d5 feat(web): rework profile + auth visuals to reference bar
Elevate the Profile (Миний) tab and login/register/forgot screens to match
TransactionList's IconChip + Card row pattern:

- Profile: avatar medallion (initial + brand tint) + name/email header,
  IconChip menu rows (Тохиргоо/Ангилал/Захиалга) with chevrons, IconChip +
  EmptyState connected-banks list.
- Categories/Subscriptions: IconChip rows via categoryStyle, EmptyState for
  empty lists, chevron-left back buttons.
- Auth: shared AuthHeader with a tinted monogram + wordmark lockup, more
  comfortable field/CTA spacing in AuthForm.

Visual only — no changes to hooks, mutations, or auth actions.
2026-08-22 22:18:18 +08:00

21 lines
571 B
TypeScript

"use client";
import { AuthForm } from "@/features/auth/AuthForm";
import { AuthHeader } from "@/features/auth/AuthHeader";
// Ports ios/Mercury/Features/Auth/ForgotPasswordView.swift: back chevron,
// MERCURY wordmark, explanatory subtitle (rendered by AuthForm), the email
// field, and the "Сэргээх холбоос авах" CTA.
export default function ForgotPasswordPage() {
return (
<>
<AuthHeader />
<div style={{ flex: 1, minHeight: 40 }} />
<AuthForm mode="forgot" />
<div style={{ paddingBottom: 60 }} />
</>
);
}