- docs
- FlowFuse User Manuals
- Using FlowFuse
- Getting Started
- Static asset service
- Bill of Materials
- FlowFuse Concepts
- Changing the Stack
- Custom Hostnames
- Device Groups
- DevOps Pipelines
- Environment Variables
- FlowFuse Assistant
- FlowFuse File Nodes
- FlowFuse Persistent Context
- FlowFuse Project Nodes
- High Availability mode
- HTTP Access Tokens
- Instance Settings
- Logging
- Shared Team Library
- Snapshots
- Team Broker
- Teams
- User Settings
- FlowFuse API
- Migrating a Node-RED project to FlowFuse
- Device Agent
- Device Agent
- FlowFuse Device Agent Introduction
- Quick Start
- Installation
- Quick Start with Web UI
- Register your Device
- Running the Agent
- Deploying your Flows
- Hardware Guides
- FlowFuse Cloud
- FlowFuse Cloud
- FlowFuse Self-Hosted
- Quick Start
- Installing FlowFuse
- Overview
- Configuring FlowFuse
- DNS Setup
- Docker install
- Docker from AWS Market Place
- Docker on Digital Ocean
- Add Project Stacks on Docker
- Docker Engine on Windows
- Email configuration
- First Run Setup
- FlowFuse File Storage
- Install FlowFuse on Kubernetes
- Upgrading FlowFuse
- Administering FlowFuse
- Administering FlowFuse
- Configuring Single Sign-On (SSO)
- Licensing
- Monitoring
- Telemetry
- User Management
- Support
- Community Support
- Premium Support
- Debugging Node-RED issues
- Contributing
- Contributing to FlowFuse
- Introduction
- Adding Template Settings
- API Design
- Creating debug stack containers
- Database migrations
- FlowFuse Architecture
- Local Install
- State Flows
- Device Editor
- Invite External Users
- User Login Flows
- Reset Password Flow
- Project Creation
- Instance states
- User Sign up Flow
- Team creation Flow
- Team Broker
- Working with Feature Flags
# User Sign Up Flow
sequenceDiagram autonumber participant UE as UserEmail participant US as User participant UI participant RT as Runtime participant DB US->>UI: Enters details on sign-up page US->>UI: Clicks Sign-up UI->>+RT: POST /account/register RT->>DB: Create User RT->>RT: Generate Email Verification Token par Runtime to UserEmail RT->>UE: Send email containing verification code and Runtime to UI RT-->>-UI: { status: 'okay' } and session created end UI->>UI: Show 'Check your email' page UE-->>US: Email received US->>+UI: Enters verification code US->>UI: Click "Continue" button UI->>+RT: POST /account/verify/token { token } RT->>RT: Checks {token} is for the logged in user RT->>DB: User.email_verified=true loop for each pending invite RT->>DB: Add user to team RT->>DB: Delete invite RT->>DB: Update audit log end RT-->>-US: Redirect '/'