view data fixes
This commit is contained in:
18
apps/website/lib/view-data/ForgotPasswordViewData.ts
Normal file
18
apps/website/lib/view-data/ForgotPasswordViewData.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { ViewData } from '@/lib/contracts/view-data/ViewData';
|
||||
|
||||
/**
|
||||
* Forgot Password View Data
|
||||
*
|
||||
* ViewData for the forgot password template.
|
||||
*/
|
||||
|
||||
|
||||
export interface ForgotPasswordViewData extends ViewData {
|
||||
returnTo: string;
|
||||
showSuccess: boolean;
|
||||
successMessage?: string;
|
||||
magicLink?: string;
|
||||
formState: any; // Will be managed by client component
|
||||
isSubmitting: boolean;
|
||||
submitError?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user