2
0

新增重置密码以及密码复杂度

This commit is contained in:
lai
2025-02-19 11:34:24 +08:00
parent 41fbdafc54
commit 0864a040d9
9 changed files with 176 additions and 8 deletions

View File

@@ -307,6 +307,8 @@ const local: any = {
agreeTerms: 'I have read and agree to the User Agreement and Privacy Policy',
code:'Code',
password:'Password',
newPassword:'New Password',
oldPassword:'Old Password',
confirmPassword:'ConfirmPassword',
basicInfo: 'BasicInfo',
terms: 'Terms',
@@ -981,7 +983,7 @@ const local: any = {
},
pwd: {
required: 'Please enter password',
invalid: '6-18 characters, including letters, numbers, and underscores'
invalid: 'The password should contain at least uppercase and lowercase letters, numbers, special symbols, and no less than 6 digits'
},
confirmPwd: {
required: 'Please enter password again',

View File

@@ -307,6 +307,8 @@ const local:any = {
agreeTerms: '我已阅读并同意用户协议和隐私政策',
code:'验证码',
password:'密码',
newPassword:'新密码',
oldPassword:'旧密码',
confirmPassword:'再次输入密码',
basicInfo: '基本信息',
terms: '协议条款',
@@ -981,7 +983,7 @@ const local:any = {
},
pwd: {
required: '请输入密码',
invalid: '密码格式不正确6-18位字符包含字母、数字、下划线'
invalid: '密码至少包含大小写字母、数字、特殊符号,且不少于6位'
},
confirmPwd: {
required: '请输入确认密码',