Registration
How to import
In the Admin Console go to Workflows → New Workflow → From Template, select Registration, and click Import.
Node Topology
How the Flow Works
- Entry: The flow begins at the Web Page (Registration form with Email + Password).
- Form submitted: the Web Page Output feeds into User Exists, which checks whether the email is already registered.
- User Exists True: account already registered; the flow loops back to the Web Page so the error is surfaced inline on the same form.
- User Exists False: no existing account; the flow proceeds to Create User.
- Create User True: profile created successfully; user is redirected to Success Final.
- Create User False: creation failed (e.g. blocked email, policy violation); user is sent to Failure Final.
Nodes Used & Why
| Node | Role | Key config |
|---|---|---|
| Web Page | Renders the registration form | Set Web Page Header and Submit Button Text |
| Email (child) | Collects the email address | Enable Validate MX Record to block disposable addresses |
| Password (child) | Captures the new password | Enable Confirm Password for registration flows |
| User Exists | Prevents duplicate account creation | True loops back to the form: error shown inline |
| Create User | Persists the new identity profile | Wire error 4021 (blocked email) if you need a dedicated error page |
| Success Final | Terminates on successful registration | Set Redirect URL to your post-registration destination |
| Failure Final | Terminates on a creation error | Set Redirect URL to a generic error page |