feat(projects): login page: code-login

This commit is contained in:
Soybean
2024-03-24 04:03:49 +08:00
parent f91ef30bd5
commit c91dd282a6
8 changed files with 171 additions and 10 deletions

View File

@ -184,6 +184,8 @@ const local: App.I18n.Schema = {
codeLogin: {
title: 'Verification Code Login',
getCode: 'Get verification code',
reGetCode: 'Reacquire after {time}s',
sendCodeSuccess: 'Verification code sent successfully',
imageCodePlaceholder: 'Please enter image verification code'
},
register: {
@ -391,7 +393,7 @@ const local: App.I18n.Schema = {
},
pwd: {
required: 'Please enter password',
invalid: 'Password format is incorrect'
invalid: '6-18 characters, including letters, numbers, and underscores'
},
confirmPwd: {
required: 'Please enter password again',

View File

@ -184,6 +184,8 @@ const local: App.I18n.Schema = {
codeLogin: {
title: '验证码登录',
getCode: '获取验证码',
reGetCode: '{time}秒后重新获取',
sendCodeSuccess: '验证码发送成功',
imageCodePlaceholder: '请输入图片验证码'
},
register: {
@ -391,7 +393,7 @@ const local: App.I18n.Schema = {
},
pwd: {
required: '请输入密码',
invalid: '密码格式不正确'
invalid: '密码格式不正确6-18位字符包含字母、数字、下划线'
},
confirmPwd: {
required: '请输入确认密码',