{% set title %}{% trans "User Name" %}{% endset %}
{% set helpText %}{% trans "The Login Name of the user." %}{% endset %}
{{ forms.input("userName", title, "", helpText, "", "required maxlength='50'") }}
{% set title %}{% trans "Password" %}{% endset %}
{% set helpText %}{% trans "The Password for this user." %}{% endset %}
{{ forms.password("password", title, "", helpText, "", "required") }}
{% set title %}{% trans "Email" %}{% endset %}
{% set helpText %}{% trans "The Email Address for this user." %}{% endset %}
{{ forms.email("email", title, "", helpText) }}
{% set title %}{% trans "Homepage" %}{% endset %}
{% set helpText %}{% trans "Homepage for this user. This is the page they will be taken to when they login." %}{% endset %}
{{ forms.dropdown("homePageId", "single", title, 1, options.homepage, "pageId", "title", helpText) }}
{% set title %}{% trans "User Type" %}{% endset %}
{% set helpText %}{% trans "What is this users type?" %}{% endset %}
{{ forms.dropdown("userTypeId", "single", title, options.defaultUserType, options.userTypes, "userTypeId", "userType", helpText) }}
{% set title %}{% trans "Library Quota" %}{% endset %}
{% set helpText %}{% trans "The quota that should be applied. Enter 0 for no quota." %}{% endset %}
{% set attributes = [
{ name: "data-live-search", value: "true" },
{ name: "data-selected-text-format", value: "count > 4" }
] %}
{% set title %}{% trans "Initial User Group" %}{% endset %}
{% set helpText %}{% trans "What is the initial user group for this user?" %}{% endset %}
{{ forms.dropdown("groupId", "single", title, options.defaultGroupId, options.groups, "groupId", "group", helpText, "selectPicker", "", "", "", attributes) }}
{% set title %}{% trans "First Name" %}{% endset %}
{% set helpText %}{% trans "The User's First Name." %}{% endset %}
{{ forms.input("firstName", title, "", helpText, "", "maxlength='254'") }}
{% set title %}{% trans "Last Name" %}{% endset %}
{% set helpText %}{% trans "The User's Last Name." %}{% endset %}
{{ forms.input("lastName", title, "", helpText, "", "maxlength='254'") }}
{% set title %}{% trans "Phone Number" %}{% endset %}
{% set helpText %}{% trans "The User's Phone Number." %}{% endset %}
{{ forms.input("phone", title, "", helpText, "", "maxlength='254'") }}
{% set title %}{% trans "Reference 1" %}{% endset %}
{% set helpText %}{% trans "A reference field for custom user data" %}{% endset %}
{{ forms.input("ref1", title, "", helpText, "", "maxlength='254'") }}
{% set title %}{% trans "Reference 2" %}{% endset %}
{% set helpText %}{% trans "A reference field for custom user data" %}{% endset %}
{{ forms.input("ref2", title, "", helpText, "", "maxlength='254'") }}
{% set title %}{% trans "Reference 3" %}{% endset %}
{% set helpText %}{% trans "A reference field for custom user data" %}{% endset %}
{{ forms.input("ref3", title, "", helpText, "", "maxlength='254'") }}
{% set title %}{% trans "Reference 4" %}{% endset %}
{% set helpText %}{% trans "A reference field for custom user data" %}{% endset %}
{{ forms.input("ref4", title, "", helpText, "", "maxlength='254'") }}
{% set title %}{% trans "Reference 5" %}{% endset %}
{% set helpText %}{% trans "A reference field for custom user data" %}{% endset %}
{{ forms.input("ref5", title, "", helpText, "", "maxlength='254'") }}
{% if currentUser.userTypeId == 1 %}
{% set title %}{% trans "Receive System Notifications?" %}{% endset %}
{% set helpText %}{% trans "Should this User receive system notifications?" %}{% endset %}
{{ forms.checkbox("isSystemNotification", title, 0, helpText) }}
{% set title %}{% trans "Receive Display Notifications?" %}{% endset %}
{% set helpText %}{% trans "Should this User receive Display notifications for Displays they have permission to see?" %}{% endset %}
{{ forms.checkbox("isDisplayNotification", title, 0, helpText) }}
{% endif %}
{% set title %}{% trans "Hide navigation?" %}{% endset %}
{% set helpText %}{% trans "Should the navigation side bar be hidden for this User?" %}{% endset %}
{{ forms.checkbox("hideNavigation", title, 0, helpText) }}
{% set title %}{% trans "Hide User Guide?" %}{% endset %}
{% set helpText %}{% trans "Should this User see the new user guide when they log in?" %}{% endset %}
{{ forms.checkbox("newUserWizard", title, 1, helpText) }}
{% set title %}{% trans "Force Password Change" %}{% endset %}
{% set helpText %}{% trans "Should this User be forced to change password next time they log in?" %}{% endset %}
{{ forms.checkbox("isPasswordChangeRequired", title, 0, helpText) }}