web: add complete password reset flow with deep link token handling
Some checks failed
Android CI / android (push) Failing after 3m59s
Android Release / release (push) Has started running
CI / test (push) Failing after 2m15s

This commit is contained in:
Codex
2026-03-09 16:09:17 +03:00
parent f708854bb2
commit 69c0b632df
4 changed files with 148 additions and 6 deletions

View File

@@ -1,9 +1,14 @@
import { AuthPanel } from "../components/AuthPanel";
export function AuthPage() {
interface AuthPageProps {
initialResetToken?: string | null;
onResetTokenConsumed?: () => void;
}
export function AuthPage({ initialResetToken = null, onResetTokenConsumed }: AuthPageProps) {
return (
<main className="min-h-screen bg-gradient-to-b from-slate-900 via-slate-950 to-black p-4">
<AuthPanel />
<AuthPanel initialResetToken={initialResetToken} onResetTokenConsumed={onResetTokenConsumed} />
</main>
);
}