+
+ Manage sub accounts. Sub account users can log in and complete
+ assigned tasks.
+
+ {!isPlusAccount(userProfile) && (
+
+ Sub account limited to 1 on Free plan. Upgrade to Plus to have up to
+ 5 sub accounts.
+
+ )}
+
+
+ Sub Accounts ({childUsers?.length || 0})
+
+ }
+ onClick={() => setCreateModalOpen(true)}
+ >
+ Add Sub Account
+
+
+
+ {isLoading ? (
+
Loading sub accounts...
+ ) : childUsers?.length === 0 ? (
+
+
+
+ No Sub Accounts
+
+
+ Create sub accounts so team members can log in and complete
+ their assigned tasks.
+
+ }
+ onClick={() => setCreateModalOpen(true)}
+ >
+ Add Your First Sub Account
+
+
+
+ ) : (
+
+ {childUsers?.map(child => (
+
+
+
+
+ {child.displayName?.[0]?.toUpperCase() ||
+ child.username?.[0]?.toUpperCase()}
+
+
+
+
+ {child.displayName || child.username}
+
+
+ Username: {child.username}
+
+
+ Created:{' '}
+ {new Date(child.createdAt).toLocaleDateString()}
+
+
+
+
+ {
+ setSelectedChildId(child.id)
+ setPasswordModalOpen(true)
+ }}
+ title='Change Password'
+ >
+
+
+
+ handleDeleteChild(
+ child.id,
+ child.displayName || child.username,
+ )
+ }
+ loading={deletingChildId === child.id}
+ title='Delete Account'
+ >
+
+
+
+
+
+
+ ))}
+
+ )}
+
+
+
+
+
+ How Managed Accounts Work
+
+
+ • Managed accounts created by the primary user, these specific for
+ user you want to have ability to delete and reset password.
+
+
+ • Sub accounts can log in with their own username and password.
+
+
+ • Managed accounts can complete tasks but have limited
+ administrative permissions
+
+
+ • Managed accounts automatically added to your circle
+
+
+
+
+