15 lines
310 B
TypeScript
15 lines
310 B
TypeScript
/**
|
|
* Signup View Data
|
|
*
|
|
* ViewData for the signup template.
|
|
*/
|
|
|
|
import { ViewData } from "../contracts/view-data/ViewData";
|
|
|
|
|
|
export interface SignupViewData extends ViewData {
|
|
returnTo: string;
|
|
formState: any; // Will be managed by client component
|
|
isSubmitting: boolean;
|
|
submitError?: string;
|
|
} |