Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

aa.gusti / opensipkd-base

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • opensipkd-base
  • docs
  • user_login_ac.puml
  • aa.gustiana@gmail.com's avatar
    fix: Update user login activity diagram to include successful login step and stop flow · b99f9d3a ...
    feat: Refactor user use case diagram for clarity and add missing user interactions
    fix: Adjust z-index values in CSS for proper element stacking
    fix: Enable hidden widget for partner and department fields in AddSchema
    fix: Clean up whitespace and formatting in DeTable class
    feat: Enhance TableWidget to include additional DataTables plugins
    aa.gustiana@gmail.com committed Jan 21, 2026
    b99f9d3a Browse Files
user_login_ac.puml 330 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
@startuml
title Login Activity Diagram

start
partition "User" {
  :Enter username and password;
  :Click login button;
}
partition "System" {
  :Validate credentials;
  if (Credentials are valid?) then (yes)
    :Log in successful;
    :Redirect to dashboard;
  else (no)
    :Display error message;
  endif
    stop

}
@enduml