Versions Compared
Key
- This line was added.
- This line was removed.
- Formatting was changed.
The <authfull> <authfull> tag contains the full functionality of the user authorization including the registration form. It also supports configurable validation in strings containing user login and password.
The following attributes are applicable to the tag:
Attribute | Type | Mandatory | Description |
---|---|---|---|
class | String | N | Specify |
the CSS style class |
. | |||
isRegistration | Boolean | N | Enable new users' registration. The default value is |
'false |
'. If it is set to |
'true |
', then new portal users can sign up |
. Otherwise, this is prohibited, and only existing users can sign in. | |||
isSwitchLang | Boolean | N | Disable locale switch on the authorization page. The default value is |
'true |
'. If this attribute is equal to |
'false |
', then the user will not be able to change the interface language and will use the default system language. | |||
isRememberMe | Boolean | N | Specify whether user credentials should be saved on this computer or not. The default value is |
'false |
'. To save the credentials, make this attribute equal to |
'true |
'. | |||
logo | String | N | Define the absolute path to the logo displayed on the authorization page. For example: https://example.com/logo.png |
isResetPassword | Boolean | N | Enable password retrieval. The default value is |
'false |
'. If it is set to "true", then the widget form will contain the retrieval link. Possible attribute values: |
'true |
' or |
'false |
'. | |||
redirectTo | String | N | Specify the path to the portal where to redirect after successful authorization. |
useSourceUrl | Boolean | N | Enable keeping the source URL after redirecting if the user has not been authorized before. The default value is |
'false |
'. Please note that if this attribute value |
is 'true |
', then it is a higher priority than the redirectTo attribute value.
|
|
|
|
|
|
|
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<authfull redirectTo="/portal" isRegistration="true" isSwitchLang="true" isRememberMe="false" isResetPassword="true"></authfull> |