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
    feat: Add user profile update diagrams and enhance user registration flow · b24a804a ...
    - Implemented Activity Diagram for User Profile Update
    - Created Sequence Diagram for User Profile Update
    - Added Use Case Diagram for User interactions
    - Developed Class Diagram for User, Group, and Permission entities
    - Added Activity and Flowchart Diagrams for User Login and Logout processes
    - Created Sequence Diagram for User Login and Logout
    - Implemented Activity, Flowchart, and Sequence Diagrams for User Registration process
    - Added Email Verification Activity and Flowchart Diagrams
    - Developed Sequence Diagram for Email Verification and Password Setup
    - Created Activity and Flowchart Diagrams for Set Password process
    - Enhanced JavaScript functionality for handling checkbox data in DataTables
    aa.gustiana@gmail.com committed Jan 08, 2026
    b24a804a
user_login_ac.puml 329 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
@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;
    stop
  else (no)
    :Display error message;
  endif
}
@enduml