feat: 新增注册页面

This commit is contained in:
xlsea
2025-04-23 17:28:03 +08:00
parent d4487dc638
commit acda7d6980
13 changed files with 196 additions and 48 deletions

View File

@ -114,6 +114,16 @@ declare namespace Api {
password?: string;
}
/** register form */
interface RegisterForm extends LoginForm {
/** 用户名 */
username?: string;
/** 密码 */
password?: string;
/** 确认密码 */
confirmPassword?: string;
}
/** login token data */
interface LoginToken {
/** 授权令牌 */

View File

@ -419,6 +419,7 @@ declare namespace App {
login: {
common: {
loginOrRegister: string;
register: string;
userNamePlaceholder: string;
phonePlaceholder: string;
codePlaceholder: string;