refactor Add sign-in form component with OAuth integration, Zod validation, i18n support, and password visibility toggle following REQ0016 requirements
```
This commit is contained in:
2025-05-16 11:14:38 +08:00
parent 2371e40ad2
commit 6e16b2e87d
11 changed files with 315 additions and 464 deletions

View File

@@ -22,7 +22,7 @@ export interface SignUpParams {
}
export interface SignInWithOAuthParams {
provider: 'google' | 'discord';
provider: 'google' | 'discord' | 'github';
}
export interface SignInWithPasswordParams {