Usage Scenario: Encrypted User Registration from the Administrator Panel

An administrator wants to specify the system login information and password for a new user directly from their control panel. This way, the user can log in to the system without waiting for email verification.

  1. Enter the UI Design module and add a Button element (e.g., ‘Register User’) from the Elements panel on the left side.
  2. In the Properties panel, enter a label such as ‘Register User’ in the Label section of the button.
  3. Select the relevant button and follow the steps below from the + ADD ACTION menu: OnClick → Authorization → Create User With Password
  1. Parameter assignments:
  • User Name txtEmail.value
  • Password txtPassword.value
  • First Name txtName.value
  • Last Name txtSurname.value
  • Don't Send Email true

These values are taken from the Text Input elements on the form:

  • txtEmail, txtPassword, txtName, and txtSurname collect the email, password, first name, and last name information from the user, respectively.
  • The Don't Send Email value is typically used as a Checkbox or a fixed Boolean value.
  • This allows the new user to log in directly with the specified password.