user_logout_fc.puml
300 Bytes
@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