update requirements,

This commit is contained in:
louiscklaw
2025-05-09 14:14:00 +08:00
parent fe1740d76f
commit 299567dd7c
35 changed files with 5054 additions and 694 deletions

View File

@@ -0,0 +1,33 @@
---
tags: cms, login-flow
---
# login flow
## description
```mermaid
graph TD;
Start-->A;
A-->B;
B-->C;
B-->D;
D-->E;
E-->F;
C-->G;
G-->A
F-->End;
A[greeting, asking username and password]
B[check if username and password is valid]
C[pasword failed]
D[pasword ok]
E[login success]
F[redirect to '/dashboard']
G[prompt user wrong username and password]
Start((start));
End((end))
```