SequenceDiagrams

Examples

Password Reset Sequence Diagram

This password reset sequence diagram shows the request, email delivery, and password update steps. It is a compact way to review where the reset link is sent and when the new password hash is persisted.

Password ResetUserAppMailerDatabaseRequest resetSend reset emailReset linkOpen link and set passwordUpdate password hashSavedPassword updated

Diagram source

Use this text as a starting point or open it in the editor to make changes.

title: Password Reset
User -> App: Request reset
App -> Mailer: Send reset email
Mailer ->> User: Reset link
User -> App: Open link and set password
App -> Database: Update password hash
Database --> App: Saved
App --> User: Password updated