qr login page /reset password page

This commit is contained in:
landaiqing
2024-08-11 18:11:15 +08:00
parent ff6a4a5d09
commit b40c9c3036
20 changed files with 580 additions and 65 deletions

8
src/types/user.d.ts vendored
View File

@@ -8,7 +8,15 @@ export interface AccountLogin {
account?: string
password?: string;
}
export interface PhoneLogin {
phone?: string
captcha?: string;
}
export interface ResetPassword {
phone?: string
captcha?: string;
password?: string;
repassword?: string;
}