- Redirect After Successful Login: By adding a Navigate action after the Encrypted Sign In action, the user can be redirected to the main screen or a role-based page.
- Notification When Login Fails: If the password or username is incorrect, the Notify action can be triggered using If Then Else to alert the user.
- Dynamic Data Storage: After a successful login, user information can be stored in Local Storage or Screen Input.
- Token Usage: The JWT token created after a successful login can be used for authentication in API queries.
Technical Risks and Precautions
- Incorrect Parameter Connection: Assigning incorrect components to the User Name and Password fields may cause the login process to fail.
- Insecure Data Storage: Do not store the user's password on the client side (e.g. Local Storage).
- Lack of Post-Login Verification: The authentication token must be used correctly to retrieve user data after login.
- Open Redirect Threat: Ensure that the page to which the user is redirected after login is secure and defined.
The Encrypted Sign In action enables users to sign in securely and with encryption in Kuika applications. It is preferred especially in applications that require high security. The entire login process is carried out with encrypted communication. It can be combined with other actions such as redirection after successful login, notifications, and user data processing.