Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1.85 KB

_admin-user-form.mdx

File metadata and controls

27 lines (17 loc) · 1.85 KB

import Breadcrumb from 'src/components/Breadcrumb.astro'; import InlineUIElement from 'src/components/InlineUIElement.astro'; import InlineField from 'src/components/InlineField.astro';

This form is what you see when you are adding or editing a user in the admin UI. This is configurable at the Tenant level.

If you need to capture and validate custom data, you can do so by creating a form field, by navigating to Customizations -> Form Fields. You should create any needed fields before you create a form. Otherwise you can use the standard form fields.

Create a form, by navigating to Customizations -> Forms. Select Admin User as the type. Add the needed sections and fields.

You should modify your theme to add labels for these custom fields for proper display in the admin UI. For example, if you added a field stored in user.data.favoriteColor, you'd add the following key to the messages file of your theme to add a label of Favorite Color to the field in the admin UI.

user.data.favoriteColor=Favorite Color

This field is not localizable, so you'll only need to modify the default messages file. Learn more about modifying the messages file in your theme.

You can also add a tooltip by adding a related key to the messages file:

{tooltip}user.data.favoriteColor=A user's favorite color. This is used to generate a custom logo with the correct color scheme.

Configure the FusionAuth admin UI to use these forms by navigating to Tenants -> Your Tenant -> General and then to the Form settings section. Set the Admin user form field to your new form.

Learn more in the Tenant documentation.