Interface FormStrategyVerifyParams

interface FormStrategyVerifyParams {
    context?: AppLoadContext;
    form: FormData;
    request: Request;
}

Properties

Properties

context?: AppLoadContext

An object of arbitrary for route loaders and actions provided by the server's getLoadContext() function.

form: FormData

A FormData object with the content of the form used to trigger the authentication.

Here you can read any input value using the FormData API.

request: Request

The request that triggered the authentication.