Skip to content

Completing your profile

This page appears when a user has a sign-in account but isn’t yet associated with any production company — typically because:

  • They started creating an account but the company creation failed
  • They were invited to join a company but haven’t yet completed the invite flow
  • They signed in for the first time on an orphaned account

The page doesn’t do anything itself — it’s a routing form. The user picks one of three options and the app sends them on to the appropriate flow.

The user is presented with three choices:

  1. Create a new company — sends them to the create-account flow to set up a company.
  2. Join an existing company — they have an invitation code; they enter it and are sent to the company-user registration flow.
  3. Contact support — opens their email client with a pre-filled message to your support address.
Visible textTranslation key
Page titleauth.CompleteProfile.title
Descriptionauth.CompleteProfile.description
”Create a company” optionauth.CompleteProfile.create-company + auth.CompleteProfile.create-company-description
”Join a company” optionauth.CompleteProfile.join-company + auth.CompleteProfile.join-company-description
”Contact support” optionauth.CompleteProfile.contact-support + auth.CompleteProfile.contact-support-description
Invitation code field (shown when “Join” is selected)auth.CompleteProfile.invitation-code (label) + auth.CompleteProfile.placeholders.invitation-code
Submit buttonauth.CompleteProfile.submit

All text lives under auth.CompleteProfile.* in tep-configuration/translations/{locale}/main/auth.json. Override per client in clients/{client}/translations/{locale}/overrides.json.

The “Contact support” option opens the user’s email client with a message pre-addressed to your support address. The address comes from your client’s configuration (AppConfig.supportEmail).

The page is the same across all clients. The only thing that varies is the support email address (set per client).

For code paths, see Completing your profile (engineering).