Skip to main content

Submit and error events

Ory Elements emits events for various actions, such as successful form submissions and errors that occur during form submissions. You can listen to these events to perform custom actions in your application.

To attach an event listener, simply pass a callback function to the corresponding event prop of the form component. The available events are:

onSuccess

The onSuccess event is emitted when a form is successfully submitted. You can use this event to track successful form submissions.

LoginForm.tsx
<Login
flow={flow}
onSuccess={(event) => {
console.log("Flow submitted successfully!", event)
}}
/>

All success events emitted by Ory Elements contain the following properties:

PropertyTypeDescription
flowTypeFlowTypeThe type of the flow that was submitted (Login, Registration, etc.).
flowFlowThe current flow object.
methodstringThe method, the user submitted (Password, Passkey, etc.)
danger

The flow object may contain pontentially sensitive information, such as the user's email address or other personally identifiable information (PII). Be cautious when logging or handling this data to avoid unintentional exposure of sensitive information.

The login flow also contains the following additional properties:

PropertyTypeDescription
sessionSessionThe session object of the logged in user.

The registration flow also contains the following additional properties:

PropertyTypeDescription
sessionSessionThe session object of the registered user. Only included if Kratos is configured to issue a session after registration
identityIdentityThe identity object of the registered user.

onError

The onError event is emitted when a form submission fails. The reason for this is exposed via the error property of the event. You can use this event to track failed form submissions and the reasons for the failures.

Common reasons include:

  • flow_expired: The flow has expired and a new flow needed to be created.
  • csrf_error: The CSRF token is invalid or missing or the request was made from a different origin. This can happen if the user has multiple tabs open or if the user is using a different browser.
  • flow_not_found: The flow could not be found.
  • flow_replaced: The flow was replaced by another flow.
  • consent_error: An error occurred during the OAuth2 consent flow.

In addition, the error property may also contain a body property, which is the original error response from the Ory API.

LoginForm.tsx
<Login
flow={flow}
onError={(event) => {
console.error("Flow submission failed!", event.type, event.body)
}}
/>

onValidationError

The onValidationError event is emitted when a form submission fails due to validation errors. The event contains the current flow object, which includes the validation messages. You can use this event to track validation errors and display them to the user.

The actual error may be found in the flow.ui.messages property of the event object, or in the flow.ui.nodes property if the validation error is related to a specific form field.

LoginForm.tsx
<Login
flow={flow}
onValidationError={(event) => {
console.error("Flow submission failed due to validation errors!", event.flow.ui.messages)
}}
/>

Examples