Search

Chapter 4. Custom user attributes

download PDF

You can add custom user attributes to the registration page with a custom theme.

4.1. Registration page

Use this procedure to enter custom attributes in the registration page.

Procedure

  1. Copy the template themes/base/login/register.ftl to the login type of your custom theme.
  2. Open the copy in an editor.

    For example, to add a mobile number to the registration page, add the following snippet to the form:

    <div class="form-group">
       <div class="${properties.kcLabelWrapperClass!}">
           <label for="user.attributes.mobile" class="${properties.kcLabelClass!}">Mobile number</label>
       </div>
    
       <div class="${properties.kcInputWrapperClass!}">
           <input type="text" class="${properties.kcInputClass!}" id="user.attributes.mobile" name="user.attributes.mobile" value="${(register.formData['user.attributes.mobile']!'')}"/>
       </div>
    </div>
  3. Ensure the name of the input html element starts with user.attributes. In the example above, the attribute will be stored by Red Hat build of Keycloak with the name mobile.
  4. To see the changes, make sure your realm is using your custom theme for the login theme and open the registration page.

4.2. Additional resources

  • See Themes for how to create a custom theme.
Red Hat logoGithubRedditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

© 2024 Red Hat, Inc.