Login
Description
Section titled “Description”Nodum’s Login screen is the main entry point for all users of the platform. Its purpose is to ensure secure authentication and controlled access to the system’s functionalities, allowing only authorized users to operate and configure industrial devices, view data, and manage the infrastructure. The login process is fundamental for protecting information and ensuring the traceability of actions within Nodum.
Main Functionality
Section titled “Main Functionality”- User authentication via credentials (username and password).
- Access validation and automatic redirection to the main screen (Dashboard) after a successful login.
- Management of authentication errors, displaying clear messages in case of incorrect credentials or access issues.
- Logging of access attempts for auditing and security purposes.
- Support for different user roles, allowing each user to access only the functionalities permitted by their profile.
User flow diagram
Section titled “User flow diagram”flowchart TD
A[Access Login] --> B[Enter username and password]
B --> C[Validate credentials]
C -- Correct --> D[Access Dashboard]
C -- Incorrect --> E[Show error message]
E --> B