/** * Reset Password View Data * * ViewData for the reset password template. */ import { ViewData } from "../contracts/view-data/ViewData"; export interface ResetPasswordViewData extends ViewData { token: string; returnTo: string; showSuccess: boolean; successMessage?: string; formState: any; // Will be managed by client component isSubmitting: boolean; submitError?: string; }