Adjacent routes — click a node to open it.taskflow
flowchart TD
A["Start: user returns from provider"] --> B["/paiement/return/"]
B --> C["Validate payment status"]
C --> D{"Payment confirmed?"}
D -->|Yes| E["Show success and receipt"]
E --> F["End: order active"]
D -->|No| G["Show error and support link"]
G --> H["/contact/"]
H --> F
click B "https://mickael-umt.com/paiement/return/" "Open Return"
click F "https://mickael-umt.com/paiement/confirmation/" "Open Confirmation"
click H "https://mickael-umt.com/contact/" "Open Contact"