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_logout_fc.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_logout_fc.puml 300 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
@startuml
title Logout Flowchart

start

:User clicks Logout button;
:System displays confirmation prompt;
if (User confirms logout?) then (yes)
  :Proceed with logout;
  :System destroys the session;
:Redirect to Login Page;

else (no)
  :Cancel logout;
  :Redirect to Dashboard;
endif
stop
@enduml