Huehive Logo

HueHive

#f9f Pinkalicious
#333 Carbon
#bbf Purple Illusion
#f66 Pompelmo
#fff White

Create a password reset flowchart

Palette Description

mermaid
flowchart LR
    Start[Start] --> ValidateUser{Validate User}
    ValidateUser -- Incorrect Email --> ShowError[Show Error]
    ValidateUser -- Correct Email --> GenerateOTP{Generate OTP}
    GenerateOTP -- OTP Sent --> VerifyOTP{Verify OTP}
    VerifyOTP -- Incorrect OTP --> ShowError
    VerifyOTP -- Correct OTP --> ResetPassword{Reset Password}
    ResetPassword -- Password Reset --> End[End]

    style Start, End fill:#f9f,stroke:#333,stroke-width:4px
    style ValidateUser, GenerateOTP, VerifyOTP, ResetPassword fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5 5