Rechercher

Ce contenu n'est pas disponible dans la langue sélectionnée.

Chapter 4. Custom user attributes

download PDF

You can add custom user attributes to the registration page and account management console 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 Single Sign-On 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. Account Management Console

Use this procedure to manage custom attributes in the user profile page in the account management console.

Procedure

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

    As an example to add a mobile number to the account page add the following snippet to the form:

    <div class="form-group">
       <div class="col-sm-2 col-md-2">
           <label for="user.attributes.mobile" class="control-label">Mobile number</label>
       </div>
    
       <div class="col-sm-10 col-md-10">
           <input type="text" class="form-control" id="user.attributes.mobile" name="user.attributes.mobile" value="${(account.attributes.mobile!'')}"/>
       </div>
    </div>
  3. Ensure the name of the input html element starts with user.attributes.
  4. To see the changes, make sure your realm is using your custom theme for the account theme and open the user profile page in the account management console.

4.3. Additional resources

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

Apprendre

Essayez, achetez et vendez

Communautés

À propos de la documentation Red Hat

Nous aidons les utilisateurs de Red Hat à innover et à atteindre leurs objectifs grâce à nos produits et services avec un contenu auquel ils peuvent faire confiance.

Rendre l’open source plus inclusif

Red Hat s'engage à remplacer le langage problématique dans notre code, notre documentation et nos propriétés Web. Pour plus de détails, consultez leBlog Red Hat.

À propos de Red Hat

Nous proposons des solutions renforcées qui facilitent le travail des entreprises sur plusieurs plates-formes et environnements, du centre de données central à la périphérie du réseau.

© 2024 Red Hat, Inc.