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.
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