Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Desktop

Sign up page V0 (Screenshot to update)

Element’s Name

Default value(s) or Behaviour(s)

How to configure it

Default settings

Included in V0

Same rules for all

Title of the page

  • Text : Sign up

  • Language available : FR, EN, DE

i18n: page.title.signup

Introductory text

  • Text : Registration is required to join the Digital Media Center. Once your request has been validate, you will receive a confirmation email.

  • Language available : FR, EN, DE

i18n:

signup.description

Firstname field

  • Type : input text

  • Rules :

    • Mandatory

  • Language available : FR, EN, DE

Lastname field

  • Type : input text

  • Rules :

    • Mandatory

    • Green Checkbox appear when user has correctly filled in the field.

  • Language available : FR, EN, DE

Email field

  • Type : input text

  • Rules :

    • Text : Your email

    • Green Checkbox appear when user has correctly filled in the field

    • Control of the email address format

  • Language available : FR, EN, DE

Email tooltip

  • Type : tooltip

  • Rules :

    • Text : Your email will not be shared.

    • Mandatory

    • Green Checkbox appear when user has correctly filled in the field.

  • Language available : FR, EN, DE

Password Field

  • Type : password field

  • Mandatory

  • Control of password security compliance

  • Text under the field : At least 8 characters, including 1 number, 1 capital letter and 1 punctuation mark.

  • Language available : FR, EN, DE

Password field tooltip

  • Type : tooltip

  • Text (under password field) : At least 8 characters, including 1 number, 1 capital letter and 1 punctuation mark.

  • Language available : FR, EN, DE

Company

  • Type : Input text

  • Rules :

    • Mandatory

    • Green Checkbox appear when user has correctly filled in the field.

  • Language available : FR, EN, DE

Terms of use Checkbox

  • Text : I accept the terms of use

  • Type : checkbox

  • Rules :

    • Mandatory

    • When user clicks on “terms of use”, he’s redirected to the terms of use page

  • Language available : FR, EN, DE

Sign up button

  • Text : Sign up

  • Type : button

  • Rules (When users clicks on this button) :

    • he’s redirected to a confirmation page (to be confirmed) only if he correctly filled in the form an email is sent to all administrators

    • Button is not clickable until the the form is OK

  • Language available : FR, EN, DE

i18n : signup.signupForm.inscriptionButton

  • I already have an account link

  • Text : I already have an account

  • Type : link

  • Rules (When user clicks on this button) :

    • he’s redirected to the login page

  • Language available : FR, EN, DE

i18n : signup.signupForm.cancelButton

Optional settings (not in V0)

Additional fields can be added to the form

  • Civility

  • Country

  • Language

  • Contact

  • Profile picture

Content Picker

Non applicable. Sign up button is not displayed on content pickers’s login page.

Mobile

Same rules as for desktop

Advanced configuration

The registration form is automatically generated based on the REST resource for storing account requests.

Adapting the registration form structure

As a default, the REST resource is /data/userregistration which targets the structure userregistration.

You can change the target resource by overriding the default value in config entry $.register.targetPath.

Adding fields to the registration form is done by changing the structure (don’t forget tags that must be added to fields). Please note that the rest_api_include tag don’t need to be added on the structure as it has been explicitly registered in restful services.

Enrich automatically generated form

Based on the structure configuration, the form fields will automatically honour the structure properties description: type, label, compulsoriness, max-length. You can still enrich this default configuration by adding config in portal to fine tune the registration form.

Adding properties to fields description for the targeted structure can be done in $.edit.<targetstructure>.fields

For instance, the default email property in the base configuration is defined as follow:

{
  default: {
    "validators": {
      "email": null,
    },
    "description": {
      "tip-i18n": "signin.loginForm.mail.description"
    }
  }
}

Such configuration will apply a validation rule to the field to check that the value is a valid email address and add a description below the field corresponding to the tip-i18n key.

Disable the accept terms of use

You can deactivate (not show) the “I accept terms of use” checkbox by setting $.register.displayCGU to false

  • No labels