You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, it is possible to add sessions to the form builder. It is not currently possible for a user to exit.
To implement this, we need to
Add a configuration object to the JSON to allow for exits, and where to send data to
{
exit: {
url: "..",
redirectUrl: "" // optional, where to redirect the user to,
confirmation: {
title: ".." // optional (defaults to Your application to <form name> has been saved)
body: ".." // optional
},
}
}
Add a route GET /{formId}/exit/email (displays email address field)
Add a route for POST /{formId}/exit/email (validates email address field)
Add a route for GET /{formId}/exit/status (displays confirmation message, or error message)
Screen.Recording.2024-06-18.at.18.43.24.mov
The text was updated successfully, but these errors were encountered:
At the moment, it is possible to add sessions to the form builder. It is not currently possible for a user to exit.
To implement this, we need to
/{formId}/exit/email
(displays email address field)/{formId}/exit/email
(validates email address field)/{formId}/exit/status
(displays confirmation message, or error message)Screen.Recording.2024-06-18.at.18.43.24.mov
The text was updated successfully, but these errors were encountered: